CurryInfo: cpm-3.3.0 / CPM.FileUtil.inTempDir

definition:
inTempDir :: IO b -> IO b
inTempDir b = do
  t <- tempDir
  exists <- doesDirectoryExist t
  if exists
    then return ()
    else createDirectory t
  inDirectory t b
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Executes an IO action with the current directory set to  CPM's temporary
--- directory.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
inTempDir
precedence:
no precedence defined
result-values:
_
signature:
Prelude.IO a -> Prelude.IO a
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term