Dual-licensed under MIT or the UNLICENSE.
memmem
sub-module provides forward and reverse substring search routines.In all such cases, routines operate on &[u8]
without regard to encoding. This is exactly what you want when searching either UTF-8 or arbitrary bytes.
memchr links to the standard library by default, but you can disable the std
feature if you want to use it in a #![no_std]
crate:
[dependencies] memchr = { version = "2", default-features = false }
On x86_64
platforms, when the std
feature is disabled, the SSE2 accelerated implementations will be used. When std
is enabled, AVX2 accelerated implementations will be used if the CPU is determined to support it at runtime.
SIMD accelerated routines are also available on the wasm32
and aarch64
targets. The std
feature is not required to use them.
When a SIMD version is not available, then this crate falls back to SWAR techniques.
This crate's minimum supported rustc
version is 1.60.0
.
The current policy is that the minimum Rust version required to use this crate can be increased in minor version updates. For example, if crate 1.0
requires Rust 1.20.0, then crate 1.0.z
for all values of z
will also require Rust 1.20.0 or newer. However, crate 1.y
for y > 0
may require a newer minimum version of Rust.
In general, this crate will be conservative with respect to the minimum supported version of Rust.
Given the complexity of the code in this crate, along with the pervasive use of unsafe
, this crate has an extensive testing strategy. It combines multiple approaches:
quickcheck
.cargo fuzz
.Improvements to the testing infrastructure are very welcome.
At time of writing, this crate's implementation of substring search actually has a few different algorithms to choose from depending on the situation.