Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 519 Bytes

File metadata and controls

5 lines (4 loc) · 519 Bytes

This directory contains code from Point-Free Episode: Composable Parsing: Zip

While flatMap allowed us to take our parser type to the next level, it introduced a nesting problem. Isn't flatMap all about solving nesting problems!? Well, we have one more operation at our disposal: zip! Let's define zip on the parser type, see what it brings to the table, and finally ask, "what's the point?"