definition:
|
genList :: SearchTree a -> SearchTree [a]
genList genx =
Or (Value [])
(genCons2 (:) genx (genList genx))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Generates a search tree for list values where the search tree for
--- the elements is given as a parameter.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {Or}}
|
name:
|
genList
|
precedence:
|
no precedence defined
|
result-values:
|
{Or}
|
signature:
|
Control.SearchTree.SearchTree a -> Control.SearchTree.SearchTree [a]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|