vyre-libs 0.7.2

vyre Category A library ecosystem - pure-IR compositions over foundation IR and primitive-owned kernels
Documentation
1
2
3
4
5
6
//! DFA / Aho-Corasick sub-dialect: pre-built transition tables + scanner.
mod aho_corasick;
mod cooperative_dfa;

pub use aho_corasick::{aho_corasick, aho_corasick_bounded};
pub use cooperative_dfa::{cooperative_dfa_scan, cooperative_dfa_scan_body_with_store};