This directory contains code from Point-Free Episode: Parser Combinators: Part 1
Even though
map
,flatMap
andzip
pack a punch, there are still many parsing operations that can't be done using them alone. This is where "parser combinators" come into play. Let's look at a few common parsing problems and solve them using parser combinators!