CurryInfo: cpm-3.3.0 / CPM.ErrorLogger.inTempDirEL

definition:
inTempDirEL :: ErrorLogger b -> ErrorLogger b
inTempDirEL b = do
  t <- liftIOEL tempDir
  exists <- liftIOEL $ doesDirectoryExist t
  if exists
    then return ()
    else liftIOEL $ createDirectory t
  inDirectoryEL t b
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Executes an EL action with the current directory set to  CPM's temporary
--- directory.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
inTempDirEL
precedence:
no precedence defined
result-values:
_
signature:
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