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