definition: |
eqPattern :: APattern a -> APattern a -> Bool eqPattern p1 p2 = case (p1, p2) of (APattern _ (f, _) _, APattern _ (g, _) _) -> f == g (ALPattern _ l, ALPattern _ m) -> l == m _ -> False |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Check if two pattern are equal. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
eqPattern |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
FlatCurry.Annotated.Types.APattern a -> FlatCurry.Annotated.Types.APattern a -> Prelude.Bool |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |