lip logo

Lip

Lip provides powerful parser combinators for creating reusable and flexible parsers.

Why Lip?

rust // Parse an (x, y) position pair use lip::*; let position = succeed!(|x, y| (x, y)) .keep(int()) .skip(token(",")) .keep(int()) .run("2,3", ()); // run this parser on string "2,3" without extra states // when parsing finished, position == (2, 3)

Tutorial

Reading the parser combinator by Bodil is an excellent way to know how parser combinators work.

License

MIT

Credits

Based on Bodil's Parser Combinator Tutorial and Evan's elm/paser.