rexile 0.5.8

A blazing-fast regex engine with 22x faster compilation and optimized case-insensitive matching
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Optimization module - fast paths and performance optimizations
//!
//! This module contains all optimization logic including:
//! - Fast path detection and execution (10 specialized patterns)
//! - Prefilter optimization for quick candidate detection
//! - Literal extraction for prefix/suffix optimization

pub mod fast_path;
pub mod literal;
pub mod prefilter;

// Re-export commonly used types
pub use fast_path::FastPath;
pub use literal::{Literal, LiteralKind};
pub use prefilter::Prefilter;