definition:
|
genCons3 :: (a1 -> a2 -> a3 -> b) -> SearchTree a1 -> SearchTree a2
-> SearchTree a3 -> SearchTree b
genCons3 c gena1 gena2 gena3 =
valsTo gena1 (\a1 ->
valsTo gena2 (\a2 ->
valsTo gena3 (\a3 -> Value (c a1 a2 a3))))
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Constructs a generator for a ternary constructor where the generators
--- for the argument types are provided.
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
genCons3
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(a -> b -> c -> d) -> Control.SearchTree.SearchTree a
-> Control.SearchTree.SearchTree b -> Control.SearchTree.SearchTree c
-> Control.SearchTree.SearchTree d
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|