definition: |
swapIOPR :: PR (IO a) -> IO (PR a) swapIOPR (OK x) = x >>= return . okPR swapIOPR (Errors p) = return (throwPR p) |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Swap the PR and the IO Monads |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({OK}) |-> _ || ({Errors}) |-> _} |
name: |
swapIOPR |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
PR (Prelude.IO a) -> Prelude.IO (PR a) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |