Count all matching bytes, but using raw pointers to represent the haystack.
Search for the first occurrence of a byte in a slice.
Search for the first occurrence of two possible bytes in a haystack.
Returns an iterator over all occurrences of the needles in a haystack.
memchr2, but using raw pointers to represent the haystack.
Search for the first occurrence of three possible bytes in a haystack.
Returns an iterator over all occurrences of the needles in a haystack.
memchr3, but using raw pointers to represent the haystack.
Returns an iterator over all occurrences of the needle in a haystack.
memchr, but using raw pointers to represent the haystack.
Search for the last occurrence of a byte in a slice.
Search for the last occurrence of two possible bytes in a haystack.
Returns an iterator over all occurrences of the needles in a haystack, in
reverse.
memrchr2, but using raw pointers to represent the haystack.
Search for the last occurrence of three possible bytes in a haystack.
Returns an iterator over all occurrences of the needles in a haystack, in
reverse.
memrchr3, but using raw pointers to represent the haystack.
Returns an iterator over all occurrences of the needle in a haystack, in
reverse.
memrchr, but using raw pointers to represent the haystack.