Expand description

A fast implementation of single-pattern substring search using SIMD acceleration, based on the work presented by Wojciech Muła. For a fast multi-pattern substring search algorithm, see instead the aho-corasick crate.

Modules

Substring search implementations using x86 architecture features.

Structs

Single-byte searcher using memchr for faster matching.

Traits

Needle that can be searched for within a haystack. It allows specialized searcher implementations for needle sizes known at compile time.