wp-primitives 0.1.1

Lightweight parsing primitives for the Warp Parse stack.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared parsing primitives.

pub use winnow::Parser;
pub type WResult<T> = winnow::ModalResult<T>;

pub mod atom;
pub mod comment;
pub mod fun;
pub mod net;
pub mod scope;
pub mod symbol;
pub mod utils;