CurryInfo: transformers-3.0.0 / Control.Monad.Trans.Except.withExceptT

definition:
withExceptT :: (Monad m) => (e -> e') -> ExceptT e m a -> ExceptT e' m a
withExceptT f = mapExceptT $ fmap $ either (Left . f) Right
demand:
no demanded arguments
deterministic:
deterministic operation
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
withExceptT
precedence:
no precedence defined
result-values:
_
signature:
Prelude.Monad c => (a -> b) -> ExceptT a c d -> ExceptT b c d
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms