textparse 0.1.0

A library to declaratively implement parsers that are based on Packrat Parsing
Documentation
1
2
3
4
5
6
7
8
9
//! A library to declaratively implement parsers that are based on Packrat Parsing.
#![warn(missing_docs)]
pub mod components;

mod parse;
mod span;

pub use self::parse::{Parse, ParseError, Parser};
pub use self::span::{Position, Span};