Skip to content

Commit

Permalink
Remove unused refIneq
Browse files Browse the repository at this point in the history
  • Loading branch information
metaleap committed Oct 30, 2017
1 parent 088a95c commit fa14ff9
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 fa14ff9

Please sign in to comment.