CurryInfo: call-analysis-3.2.0 / Analysis.lessSpecificEqResult

definition: Info
 
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: Info
 arguments 3 4
deterministic: Info
 deterministic operation
documentation: Info
 
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: Info
 (_, _, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,{Eq},{Eq}) |-> _}
name: Info
 lessSpecificEqResult
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Eq a => (a -> a -> Prelude.Bool) -> SemEq a -> SemEq a -> Prelude.Bool
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms