definition:
|
genTriple :: SearchTree a -> SearchTree b -> SearchTree c
-> SearchTree (a,b,c)
genTriple = genCons3 (\x y z -> (x,y,z))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Generates a search tree for triple of values where the search tree
--- generators for the components types are given as parameters.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {genCons3}}
|
name:
|
genTriple
|
precedence:
|
no precedence defined
|
result-values:
|
{genCons3}
|
signature:
|
Control.SearchTree.SearchTree a -> Control.SearchTree.SearchTree b
-> Control.SearchTree.SearchTree c -> Control.SearchTree.SearchTree (a, b, c)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|