kamo 0.7.0

A library to assist in the creation of an interpreter or compiler and its associated runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod ascii;
pub mod unicode;

mod error;
pub use error::CharacterError;

mod matches;
pub use matches::*;

#[cfg(feature = "regex")]
mod match_re;
#[cfg(feature = "regex")]
pub use match_re::*;

mod take;
pub use take::*;