definition: |
genTuple4 :: SearchTree a -> SearchTree b -> SearchTree c -> SearchTree d -> SearchTree (a,b,c,d) genTuple4 = genCons4 (\x y z1 z2 -> (x,y,z1,z2)) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Generates a search tree for quadruple 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: |
{() |-> {genCons4}} |
name: |
genTuple4 |
precedence: |
no precedence defined |
result-values: |
{genCons4} |
signature: |
Control.SearchTree.SearchTree a -> Control.SearchTree.SearchTree b -> Control.SearchTree.SearchTree c -> Control.SearchTree.SearchTree d -> Control.SearchTree.SearchTree (a, b, c, d) |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |