Expand description
SIMD-optimized utilities for performance-critical operations.
This module provides SIMD-accelerated functions for common operations:
- String comparison
- ASCII validation
- Byte searching
- Byte counting
SIMD implementations are architecture-specific and automatically selected at compile time. Falls back to scalar implementations when SIMD is not available.
Functionsยง
- count_
byte_ fast - Fast count of specific byte in slice using SIMD.
- fast_
str_ eq - Fast string comparison using SIMD when available.
- find_
byte_ fast - Fast byte search using SIMD.
- is_
ascii_ fast - Fast check if string contains only ASCII characters using SIMD.