CurryInfo: traversal-3.0.0 / Data.Traversal.evalFamily

definition: Info
 
evalFamily :: Traversable a a -> (a -> Maybe a) -> a -> a
evalFamily tr f = mapFamily tr g
 where g x = maybe x (mapFamily tr g) (f x)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Applies the given function to each member of the family of a value 
as long as possible. On each member of the family of the result the given
function will yield `Nothing`.
Proceeds bottom-up.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> {.._#lambda508}}
name: Info
 evalFamily
precedence: Info
 no precedence defined
result-values: Info
 {.._#lambda508}
signature: Info
 (a -> ([a], [a] -> a)) -> (a -> Prelude.Maybe a) -> a -> a
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms