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 782892c commit 14eb29fCopy full SHA for 14eb29f
package.json
@@ -5,8 +5,8 @@
5
"test": "pulp test"
6
},
7
"devDependencies": {
8
- "purescript-psa": "^0.6.0",
9
- "purescript": "^0.12.0",
10
- "pulp": "^12.2.0"
+ "purescript-psa": "^0.7.3",
+ "purescript": "^0.13.0",
+ "pulp": "^13.0.0"
11
}
12
src/Options/Applicative/Internal.purs
@@ -217,9 +217,9 @@ runListT xs = do
217
TCons x xt -> liftM1 (List.Cons x) (runListT xt)
218
219
instance listTFunctor :: Monad m => Functor (ListT m) where
220
- map f = ListT
221
- <<< liftM1 (bimapTStep f (map f))
222
- <<< stepListT
+ map f v = ListT
+ $ liftM1 (bimapTStep f (map f))
+ $ stepListT v
223
224
instance listTApply :: Monad m => Apply (ListT m) where
225
apply = ap
0 commit comments