CurryInfo: transformers-3.0.0 / Control.Monad.Trans.State.mapStateT

definition: Info
 
mapStateT :: (Monad m, Monad n)
          => (m (a, s) -> n (b, s))
          -> StateT s m a -> StateT s n b
mapStateT f m = StateT $ \s -> f (runStateT m s)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
failfree: Info
 (_, _, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_,_) |-> _}
name: Info
 mapStateT
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (Prelude.Monad a, Prelude.Monad d) => (a (b, c) -> d (e, c)) -> StateT c a b
-> StateT c d e
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms