definition:
|
withExcept :: (e -> e') -> Except e a -> Except e' a
withExcept = withExceptT
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- | Transform any exceptions thrown by the computation using the given
-- function (a specialization of 'withExceptT').
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {withExceptT}}
|
name:
|
withExcept
|
precedence:
|
no precedence defined
|
result-values:
|
{withExceptT}
|
signature:
|
(a -> b) -> ExceptT a Data.Functor.Identity.Identity c
-> ExceptT b Data.Functor.Identity.Identity c
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|