Skip to content

Commit

Permalink
Merge pull request #148 from metaleap/master
Browse files Browse the repository at this point in the history
Remove unused refIneq
  • Loading branch information
paf31 authored Nov 1, 2017
2 parents 088a95c + fa14ff9 commit 8bf3ca6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions src/Data/Eq.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@ exports.refEq = function (r1) {
};
};

exports.refIneq = function (r1) {
return function (r2) {
return r1 !== r2;
};
};

exports.eqArrayImpl = function (f) {
return function (xs) {
return function (ys) {
Expand Down
1 change: 0 additions & 1 deletion src/Data/Eq.purs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ instance eqArray :: Eq a => Eq (Array a) where
eq = eqArrayImpl eq

foreign import refEq :: forall a. a -> a -> Boolean
foreign import refIneq :: forall a. a -> a -> Boolean
foreign import eqArrayImpl :: forall a. (a -> a -> Boolean) -> Array a -> Array a -> Boolean

-- | The `Eq1` type class represents type constructors with decidable equality.
Expand Down

0 comments on commit 8bf3ca6

Please sign in to comment.