regexr 0.2.2

A high-performance regex engine built from scratch with JIT compilation and SIMD acceleration
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Lexer/tokenizer for regex patterns.

mod escape;
mod scanner;
mod token;

#[cfg(test)]
mod tests;

pub use scanner::Lexer;
pub use token::{EscapeKind, Token, TokenKind};