definition: |
mapChildren :: Traversable a b -> (b -> b) -> a -> a mapChildren tr f x = replaceChildren tr x (map f (children tr x)) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Applies the given function to each child of a value. --- |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
mapChildren |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(a -> ([b], [b] -> a)) -> (b -> b) -> a -> a |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |