write-you-a-haskell/chapter3
Christian Sievers 11709255c3 chapter3/parsec.hs: change definition of option
Let (<|>) (which equals option) return all parses of the succeeding parser,
as seems to be implied by the description in the chapter on Parsing.

Example:  parse (empty <|> ((unit 'a') `combine` (unit 'b'))) ""
2015-01-30 18:29:15 +01:00
..
calc infixOp to prefixOp 2015-01-20 10:48:22 -05:00
parsec.hs chapter3/parsec.hs: change definition of option 2015-01-30 18:29:15 +01:00