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 4c01ab9 commit bfacf3fCopy full SHA for bfacf3f
bower.json
@@ -16,6 +16,6 @@
16
"js"
17
],
18
"dependencies": {
19
- "purescript-foldable-traversable": "*"
+ "purescript-arrays": "*"
20
}
21
src/Control/Monad.purs
@@ -2,10 +2,6 @@ module Control.Monad where
2
3
import Prelude
4
import Data.Array
5
-import Data.Traversable
6
-
7
-zipWithA :: forall m a b c. (Applicative m) => (a -> b -> m c) -> [a] -> [b] -> m [c]
8
-zipWithA f xs ys = sequence (zipWith f xs ys)
9
10
replicateM :: forall m a. (Monad m) => Number -> m a -> m [a]
11
replicateM 0 _ = return []
0 commit comments