CurryInfo: traversal-3.0.0 / Data.Traversal.foldChildren

definition: Info
 
foldChildren :: Traversable a b -> Traversable b b
             -> (a -> [rb] -> ra) -> (b -> [rb] -> rb) -> a -> ra
foldChildren tra trb f g a = f a (map (fold trb g) (children tra a))
demand: Info
 argument 3
deterministic: Info
 deterministic operation
documentation: Info
 
Fold the children and combine the results.
failfree: Info
 (_, _, _, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_,_,_) |-> _}
name: Info
 foldChildren
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (a -> ([b], [b] -> a)) -> (b -> ([b], [b] -> b)) -> (a -> [c] -> d) -> (b -> [c]
-> c) -> a -> d
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms