definition:
|
(~~>) :: Data a => Observer a -> Observer b -> Observer (a -> b)
a ~~> b = oFunFG a b
|
demand:
|
no demanded arguments
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
-- Construct an observer for functions where the argument might be
-- a free variable and the result is always non-free (e.g., a functional value).
|
failfree:
|
<FAILING>
|
indeterministic:
|
might be indeterministic
|
infix:
|
infixr
|
iotype:
|
{(_,_,_) |-> {oFunFG}}
|
name:
|
~~>
|
precedence:
|
5
|
result-values:
|
{oFunFG}
|
signature:
|
Prelude.Data a => (a -> String -> Prelude.Int -> [Prelude.Int] -> a) -> (b
-> String -> Prelude.Int -> [Prelude.Int] -> b) -> (a -> b) -> String
-> Prelude.Int -> [Prelude.Int] -> a -> b
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|