definition:
|
lessSpecificEqResult :: Eq a => (a->a->Bool) -> SemEq a -> SemEq a -> Bool
lessSpecificEqResult lessSpecific (Eq f1 args1 v1) (Eq f2 args2 v2) =
f1==f2 && args1==args2 && lessSpecific v1 v2
|
demand:
|
arguments 3 4
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Is semantic equation e1 less specific than e2 w.r.t. their results?
-- The first argument is the information ordering on terms.
-- A semantic equation is less specific iff all arguments are identical
-- and the result of the equations are less specific.
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{Eq},{Eq}) |-> _}
|
name:
|
lessSpecificEqResult
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Eq a => (a -> a -> Prelude.Bool) -> SemEq a -> SemEq a -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|