mirror of
https://github.com/mrkkrp/megaparsec.git
synced 2024-11-24 03:52:07 +03:00
improve efficiency of applicative interface
This commit is contained in:
parent
0123e43eb5
commit
b19dae4315
@ -172,8 +172,10 @@ parsecMap f p = ParsecT $ \s cok cerr eok eerr ->
|
||||
unParser p s (cok . f) cerr (eok . f) eerr
|
||||
|
||||
instance A.Applicative (ParsecT s u m) where
|
||||
pure = return
|
||||
(<*>) = ap -- TODO: Can this be optimized?
|
||||
pure = return
|
||||
(<*>) = ap -- TODO: Can this be optimized?
|
||||
(*>) = (>>)
|
||||
p1 <* p2 = do { x1 <- p1 ; void p2 ; return x1 }
|
||||
|
||||
instance A.Alternative (ParsecT s u m) where
|
||||
empty = mzero
|
||||
|
Loading…
Reference in New Issue
Block a user