-
-
Save denisshevchenko/226143377c3244d96329 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(<|>) :: Parser a -> Parser a -> Parser a | |
parser1 <|> parser2 = P $ \some -> case parse parser1 some of | |
[] -> parse parser2 some | |
result -> result |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment