Closed djspiewak closed 7 years ago
? : Parser[A] => Parser[Option[A]]
* : Parser[A] => Parser[List[A]]
+ : Parser[A] => Parser[List[A]]
NEL
These are all quite easy to define without adding to the Parser algebra.
Parser
? : Parser[A] => Parser[Option[A]]
* : Parser[A] => Parser[List[A]]
+ : Parser[A] => Parser[List[A]]
(could beNEL
, if we had one of those)These are all quite easy to define without adding to the
Parser
algebra.