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 05f8ac4 commit 37872e3Copy full SHA for 37872e3
bower.json
@@ -19,8 +19,7 @@
19
"Gruntfile.json"
20
],
21
"dependencies": {
22
- "purescript-maybe": "*",
23
- "purescript-monoid": "*"
+ "purescript-maybe": "*"
24
},
25
"devDependencies": {
26
"purescript-exceptions": "*",
src/Data/Array.purs
@@ -31,7 +31,6 @@ module Data.Array
31
) where
32
33
import Data.Maybe
34
-import Data.Monoid
35
import Prelude.Unsafe (unsafeIndex)
36
37
infixl 8 !!
@@ -276,9 +275,6 @@ instance monadArray :: Monad []
276
275
instance semigroupArray :: Semigroup [a] where
277
(<>) = append
278
279
-instance monoidArray :: Monoid [a] where
280
- mempty = []
281
-
282
instance alternativeArray :: Alternative [] where
283
empty = []
284
(<|>) = append
0 commit comments