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 2cdfbd0 commit 9b13ce9Copy full SHA for 9b13ce9
docs/Module.md
@@ -31,8 +31,6 @@
31
32
instance lazy1ParserT :: Lazy1 (ParserT s m)
33
34
- instance lazyParserT :: Lazy (ParserT s m a)
35
-
36
instance monadParserT :: (Monad m) => Monad (ParserT s m)
37
38
instance monadPlusParserT :: (Monad m) => MonadPlus (ParserT s m)
src/Text/Parsing/Parser.purs
@@ -84,9 +84,6 @@ instance monadStateParserT :: (Monad m) => MonadState s (ParserT s m) where
84
return $ case f s of
85
Tuple a s' -> { input: s', consumed: false, result: Right a }
86
87
-instance lazyParserT :: Lazy (ParserT s m a) where
88
- defer f = ParserT $ \s -> unParserT (f unit) s
89
90
instance lazy1ParserT :: Lazy1 (ParserT s m) where
91
defer1 f = ParserT $ \s -> unParserT (f unit) s
92
0 commit comments