definition:
|
genCons1 :: (a -> b) -> SearchTree a -> SearchTree b
genCons1 c gena = valsTo gena (Value . c)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Constructs a generator for a unary constructor where the generator
--- for the argument type is provided.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
genCons1
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(a -> b) -> Control.SearchTree.SearchTree a -> Control.SearchTree.SearchTree b
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|