Skip to content

Commit bfacf3f

Browse files
committed
Remove zipWithA, fix cyclic dependency
1 parent 4c01ab9 commit bfacf3f

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
"js"
1717
],
1818
"dependencies": {
19-
"purescript-foldable-traversable": "*"
19+
"purescript-arrays": "*"
2020
}
2121
}

src/Control/Monad.purs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ module Control.Monad where
22

33
import Prelude
44
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)
95

106
replicateM :: forall m a. (Monad m) => Number -> m a -> m [a]
117
replicateM 0 _ = return []

0 commit comments

Comments
 (0)