zen-expression 0.55.0

Zen Expression Language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Performs lexical analysis on string inputs
//!
//! The Lexer module transforms strings into tokens using Strum.
mod error;
mod token;

mod codes;
mod cursor;
mod lexer;

pub use error::LexerError;
pub use lexer::Lexer;
pub use token::*;