oak-core 0.0.11

Core parser combinator library providing fundamental parsing primitives.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("readme.md")]

mod cursor;
mod green_tree;
mod metadata;
pub mod red_tree;
mod typed;

pub use self::{
    cursor::Cursor,
    green_tree::{GreenLeaf, GreenNode, GreenTree},
    metadata::{ProvenancePart, TokenProvenance},
    red_tree::{RedChildren, RedLeaf, RedNode, RedTree},
    typed::TypedNode,
};

pub use triomphe::Arc;