Expand description
SIMD-accelerated pattern matching
Uses SSE2/AVX2 for fast pattern scanning when available. Falls back to scalar implementation on unsupported platforms.
In no_std mode, runtime SIMD detection is disabled and defaults to
scalar implementation. Use target features to enable SIMD at compile time.
Structs§
- Simd
Scanner - SIMD-accelerated pattern scanner
Enums§
- Simd
Level - SIMD implementation selector
Functions§
- simd_
scan - scan data for pattern using SIMD when available
- simd_
scan_ first - scan data for first pattern match using SIMD