definition:
|
inDirectory :: String -> IO b -> IO b
inDirectory dir b = do
previous <- getCurrentDirectory
setCurrentDirectory dir
b' <- b
setCurrentDirectory previous
return b'
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Executes an IO action with the current directory set to a specific
--- directory.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
inDirectory
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.IO a -> Prelude.IO a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|