definition:
|
(~~~>) :: Observer a -> Observer b -> Observer (a -> b)
a ~~~> b = oFunG a b
|
demand:
|
no demanded arguments
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
-- Construct an observer for functions where the argument and the result
-- are never free variables.
|
failfree:
|
<FAILING>
|
indeterministic:
|
might be indeterministic
|
infix:
|
infixr
|
iotype:
|
{(_,_) |-> {oFunG}}
|
name:
|
~~~>
|
precedence:
|
5
|
result-values:
|
{oFunG}
|
signature:
|
(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
|