Crate sliceslice

Source
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§

x86
Substring search implementations using x86 architecture features.

Structs§

MemchrSearcher
Single-byte searcher using memchr for faster matching.

Traits§

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