No description
| src | rework ts | |
| .gitignore | init | |
| Cargo.lock | make MIRI happy - V2 | |
| Cargo.toml | make MIRI happy - V2 | |
| LICENSE-APACHE | LICENSING YAY | |
| LICENSE-MIT | LICENSING YAY | |
| README.md | LICENSING YAY | |
Parser Tools
Tools for writing parsers in Rust with this pipeline:
&str
|> .chars()
|> PeekableChars (provided by this crate)
|> Lexer/Tokenizer (write your own)
|> Spanify (provided by this crate)
|> Token filterer (remove whitespace tokens; optional, write your own)
|> Parser (write your own)
...