]> git.proxmox.com Git - rustc.git/blame - library/std/src/memchr.rs
New upstream version 1.53.0+dfsg1
[rustc.git] / library / std / src / memchr.rs
CommitLineData
9fa01778 1// Original implementation taken from rust-memchr.
9cc50fc6
SL
2// Copyright 2015 Andrew Gallant, bluss and Nicolas Koch
3
1b1a35ee
XL
4#[cfg(test)]
5mod tests;
6
9cc50fc6
SL
7/// A safe interface to `memchr`.
8///
9/// Returns the index corresponding to the first occurrence of `needle` in
10/// `haystack`, or `None` if one is not found.
11///
12/// memchr reduces to super-optimized machine code at around an order of
13/// magnitude faster than `haystack.iter().position(|&b| b == needle)`.
14/// (See benchmarks.)
15///
3b2f2976 16/// # Examples
9cc50fc6
SL
17///
18/// This shows how to find the first position of a byte in a byte string.
19///
041b39d2 20/// ```ignore (cannot-doctest-private-modules)
9cc50fc6
SL
21/// use memchr::memchr;
22///
23/// let haystack = b"the quick brown fox";
24/// assert_eq!(memchr(b'k', haystack), Some(8));
25/// ```
c30ab7b3 26#[inline]
9cc50fc6 27pub fn memchr(needle: u8, haystack: &[u8]) -> Option<usize> {
532ac7d7 28 crate::sys::memchr::memchr(needle, haystack)
9cc50fc6
SL
29}
30
31/// A safe interface to `memrchr`.
32///
33/// Returns the index corresponding to the last occurrence of `needle` in
34/// `haystack`, or `None` if one is not found.
35///
3b2f2976 36/// # Examples
9cc50fc6
SL
37///
38/// This shows how to find the last position of a byte in a byte string.
39///
041b39d2 40/// ```ignore (cannot-doctest-private-modules)
9cc50fc6
SL
41/// use memchr::memrchr;
42///
43/// let haystack = b"the quick brown fox";
44/// assert_eq!(memrchr(b'o', haystack), Some(17));
45/// ```
c30ab7b3 46#[inline]
9cc50fc6 47pub fn memrchr(needle: u8, haystack: &[u8]) -> Option<usize> {
532ac7d7 48 crate::sys::memchr::memrchr(needle, haystack)
9cc50fc6 49}