Skip to content

Commit 8bf3ca6

Browse files
authored
Merge pull request #148 from metaleap/master
Remove unused refIneq
2 parents 088a95c + fa14ff9 commit 8bf3ca6

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/Data/Eq.js

-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ exports.refEq = function (r1) {
66
};
77
};
88

9-
exports.refIneq = function (r1) {
10-
return function (r2) {
11-
return r1 !== r2;
12-
};
13-
};
14-
159
exports.eqArrayImpl = function (f) {
1610
return function (xs) {
1711
return function (ys) {

src/Data/Eq.purs

-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ instance eqArray :: Eq a => Eq (Array a) where
5555
eq = eqArrayImpl eq
5656

5757
foreign import refEq :: forall a. a -> a -> Boolean
58-
foreign import refIneq :: forall a. a -> a -> Boolean
5958
foreign import eqArrayImpl :: forall a. (a -> a -> Boolean) -> Array a -> Array a -> Boolean
6059

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

0 commit comments

Comments
 (0)