cfg-predict 0.0.1

Library for manipulating context-free grammars.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Prediction for predictive parsers.
//!
//! FIRST and FOLLOW sets impls are based on code by Niko Matsakis.

mod distance;
mod first;
mod follow;
mod last;
mod sets;

pub use self::distance::MinimalDistance;
pub use self::first::FirstSets;
pub use self::follow::FollowSets;
pub use self::last::LastSets;
pub use self::sets::{PerSymbolSets, PredictSets};