We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7c0230 commit 6dd668eCopy full SHA for 6dd668e
src/Data/Foldable.purs
@@ -95,7 +95,7 @@ product :: forall f. (Foldable f) => f Number -> Number
95
product = foldl (*) 1
96
97
elem :: forall a f. (Eq a, Foldable f) => a -> f a -> Boolean
98
-elem = any <<< (==)
+elem = any <<< (==)
99
100
notElem :: forall a f. (Eq a, Foldable f) => a -> f a -> Boolean
101
notElem x = not <<< elem x
0 commit comments