You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find odd that attoparsec has
satisfyWith :: (Word8 -> a) -> (a -> Bool) -> Parser a
but not
satisfyMaybe :: (Word8 -> Maybe a) -> Parser a
since that is what I want most of the time.
Also, you can simulate satisfyWith using satisfyMaybe but not the other way round.
The text was updated successfully, but these errors were encountered:
I find odd that attoparsec has
satisfyWith :: (Word8 -> a) -> (a -> Bool) -> Parser a
but not
satisfyMaybe :: (Word8 -> Maybe a) -> Parser a
since that is what I want most of the time.
Also, you can simulate satisfyWith using satisfyMaybe but not the other way round.
The text was updated successfully, but these errors were encountered: