CurryInfo: traversal-3.0.0 / Data.Traversal.evalFamilyM

definition: Info
 
evalFamilyM :: Monad m => Traversable a a -> (a -> m (Maybe a)) -> a -> m a
evalFamilyM tr f = mapFamilyM tr g
 where g a = f a >>= maybe (return a) (mapFamilyM tr g)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Monadic version of evalFamily
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> {mapFamilyM}}
name: Info
 evalFamilyM
precedence: Info
 no precedence defined
result-values: Info
 {mapFamilyM}
signature: Info
 Prelude.Monad b => (a -> ([a], [a] -> a)) -> (a -> b (Prelude.Maybe a)) -> a
-> b a
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms