Module regex::literal [−][src]
Re-exports
use std::cmp; |
use std::mem; |
use aho_corasick::Automaton; |
use aho_corasick::AcAutomaton; |
use aho_corasick::FullAcAutomaton; |
use memchr::memchr; |
use memchr::memchr2; |
use memchr::memchr3; |
use syntax::hir::literal::Literal; |
use syntax::hir::literal::Literals; |
use freqs::BYTE_FREQUENCIES; |
use self::teddy_avx2::Teddy as TeddyAVX2; |
use self::teddy_ssse3::Teddy as TeddySSSE3; |
Modules
| teddy_avx2 | |
| teddy_ssse3 |
Structs
| BoyerMooreSearch |
An implementation of Tuned Boyer-Moore as laid out by Andrew Hume and Daniel Sunday in "Fast String Searching". O(n) in the size of the input. |
| FreqyPacked |
Provides an implementation of fast subtring search using frequency analysis. |
| LiteralSearcher |
A prefix extracted from a compiled regular expression. |
| SingleByteSet |
Enums
| LiteralIter | |
| Matcher |
Functions
| char_len_lossy | |
| freq_rank |