Expand description
fast-find
finds bytes fast.
Fast-find uses SIMD instructions to make searching small byte arrays fast, or falls back to linear search when not possible.
Functionsยง
- find_
in_ 4 - Returns the index of the first element in the haystack that matches needle, up-to len, or None
- find_
in_ 16 - Returns the index of the first element in the haystack that matches needle, up-to len, or None
- find_
in_ 32 - Returns the index of the first element in the haystack that matches needle, up-to len, or None