CurryInfo: cpm-3.3.0 / CPM.ErrorLogger.inDirectoryEL

definition:
inDirectoryEL :: String -> ErrorLogger b -> ErrorLogger b
inDirectoryEL dir b = do
  previous <- liftIOEL getCurrentDirectory
  logDebug $ "Set current working directory to: " ++ dir
  liftIOEL $ setCurrentDirectory dir
  b' <- b
  logDebug $ "Set current working directory to: " ++ previous
  liftIOEL $ setCurrentDirectory previous
  return b'
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Executes an EL action with the current directory set to a specific
--- directory.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
inDirectoryEL
precedence:
no precedence defined
result-values:
_
signature:
String -> ErrorLogger a -> ErrorLogger a
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term