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
//! Interpreter for Shift-Or (Bitap) algorithm.
//!
//! A bit-parallel NFA simulation that runs entirely in CPU registers.
//! Only works for patterns with ≤64 character positions.

mod matcher;

pub use matcher::ShiftOrInterpreter;