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