We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 088a95c + fa14ff9 commit 8bf3ca6Copy full SHA for 8bf3ca6
src/Data/Eq.js
@@ -6,12 +6,6 @@ exports.refEq = function (r1) {
6
};
7
8
9
-exports.refIneq = function (r1) {
10
- return function (r2) {
11
- return r1 !== r2;
12
- };
13
-};
14
-
15
exports.eqArrayImpl = function (f) {
16
return function (xs) {
17
return function (ys) {
src/Data/Eq.purs
@@ -55,7 +55,6 @@ instance eqArray :: Eq a => Eq (Array a) where
55
eq = eqArrayImpl eq
56
57
foreign import refEq :: forall a. a -> a -> Boolean
58
-foreign import refIneq :: forall a. a -> a -> Boolean
59
foreign import eqArrayImpl :: forall a. (a -> a -> Boolean) -> Array a -> Array a -> Boolean
60
61
-- | The `Eq1` type class represents type constructors with decidable equality.
0 commit comments