Now all of these parsers are cool and all, but the real power comes in the composability of parsers. The Parser
type supports many forms of composition that unlock the ability to break large, complex problems into simpler ones. And ideally we can be very confident that the small parsers do their job correctly, like the int
and double
parsers, and then we can be confident that we glued all the parsers together correctly.