Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 510 Bytes

File metadata and controls

5 lines (4 loc) · 510 Bytes

This directory contains code from Point-Free Episode: Parser Combinators: Part 2

Let’s solve another common parsing problem using parser combinators! It’s common to want to parse multiple values off a string, and while zip gets us part of the way there, it doesn’t let us part any number of values! Luckily there’s a parser combinator that can help, and it really packs a punch.