definition:
|
childFamilies :: Traversable a b -> Traversable b b -> a -> [b]
childFamilies tra trb x = childFamiliesFL tra trb x []
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Computes a list of family members of the children of a value.
--- The value and its children can have different types.
---
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
childFamilies
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(a -> ([b], [b] -> a)) -> (b -> ([b], [b] -> b)) -> a -> [b]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|