regexr 0.1.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
12
13
14
//! DFA (Deterministic Finite Automaton) module.
//!
//! Implements lazy and eager DFA construction and execution.
//!
//! ## Engines
//!
//! - `lazy/` - Lazy DFA (on-demand state construction)
//! - `eager/` - Eager DFA (pre-computed states)

pub mod eager;
pub mod lazy;

pub use eager::{EagerDfa, EagerDfaEngine};
pub use lazy::{CharClass, DfaStateId, LazyDfa, LazyDfaEngine, PositionContext};