CurryInfo: cpm-3.3.0 / CPM.ErrorLogger.tryEL

definition:
tryEL :: Bool -> ErrorLogger a -> ErrorLogger (Either LogEntry a)
tryEL quiet a = do
  ll    <- if quiet then return Quiet else getLogLevel
  stime <- getWithShowTime
  liftIOEL $ fmap (snd . snd) $ runErrorLogger a ll stime
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Tries to execute an EL action and returns either an error that
--- occurred or the value. If the first argument is `True`, the execution
--- will run quietly.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
tryEL
precedence:
no precedence defined
result-values:
_
signature:
Prelude.Bool -> ErrorLogger a -> ErrorLogger (Prelude.Either LogEntry a)
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term