slk-tokenstream 0.1.0

A small crate for handling look ahead, consumption, and otherwise manipulating an array of tokens
Documentation
1
2
3
4
5
6
7
8
#![no_std]

pub mod bookmark;
pub mod tokenstream;
mod tests;

pub use tokenstream::TokenStream;
pub use bookmark::Mark;