CurryInfo: execpath-3.0.0 / System.Path.fileInPath

definition:
fileInPath :: String -> IO Bool
fileInPath file = do
  dirs <- dirsInPath
  or  <$> mapM (doesFileExist . (</> file)) dirs
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Checks whether a file exists in one of the directories
--- of the environment variable `PATH`.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
fileInPath
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:
possibly non-reducible on same data term