definition: |
liftIOEL :: IO a -> ErrorLogger a liftIOEL ma = ErrorLogger (\l s -> do a <- ma return ((l, s), ([], Right a))) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Lifts an IO action into the `ErrorLogger` monad. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> {ErrorLogger}} |
name: |
liftIOEL |
precedence: |
no precedence defined |
result-values: |
{ErrorLogger} |
signature: |
Prelude.IO a -> ErrorLogger a |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |