Crate fast_find[][src]

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