CurryInfo: cpm-3.3.0 / CPM.FileUtil.isSymlink

definition:
isSymlink :: String -> IO Bool
isSymlink link = do
  (code, _, _) <- evalCmd "readlink" ["-n", link] ""
  return $ code == 0
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Tests whether a file is a symlink.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
isSymlink
precedence:
no precedence defined
result-values:
_
signature:
String -> Prelude.IO Prelude.Bool
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms