blob: 24b5ea6126b866d01894451af24f1a7e96c0f919 (
plain)
1
2
3
4
5
6
7
8
9
|
Parser Generator
================
This parser generator expands on [this paper](https://www.cs.nott.ac.uk/~pszgmh/monparsing.pdf).
The goal is to have a good enough parser generator for use in my other personal projects.
# The type of parsers
Parsers are lambdas that receive some *input* and return either a *parsing* or a *failure*.
|