quoth 0.3.0

Quoth is a scannerless (no-lexing), developer-friendly parsing library for implementing DSLs and syntax parsers in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Contains a menagerie of useful types that implement the [`Parsable`] trait.

use super::*;

mod everything;
mod exact;
mod nothing;
pub mod numbers;
mod optional;
mod whitespace;

pub use everything::*;
pub use exact::*;
pub use nothing::*;
pub use optional::*;
pub use whitespace::*;