gigaparsec/inspiration.md

20 lines
719 B
Markdown
Raw Permalink Normal View History

2024-09-02 17:11:00 +00:00
- Hutton & Meijer, _[Monadic Parser Combinators](http://www.cs.nott.ac.uk/~pszgmh/monparsing.pdf)_
The original paper on monadic parser combinators.
2024-09-02 17:11:00 +00:00
2024-08-31 21:11:56 +00:00
- Leijen & Meijer, _[Parsec: Direct Style Monadic Parser Combinators For The Real World](https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/parsec-paper-letter.pdf)_
Describes Parsec, a monadic parser combinator library that limits backtracking by default and adds better error messages.
- [Megaparsec](https://hackage.haskell.org/package/megaparsec)
Improved fork of Megaparsec.
- [FParsec](https://github.com/stephan-tolksdorf/fparsec)
Parsec implementation in F#.
2024-09-02 17:11:00 +00:00
- [Sprache](https://github.com/sprache/Sprache)
2024-09-02 17:11:00 +00:00
Parsec implementation in C#.