Function memx::memrnechr_tpl

source ·
pub fn memrnechr_tpl(buf: &[u8], by1: u8, by2: u8, by3: u8) -> Option<usize>
Expand description

This is same as buf.iter().rposition(|&x| x != by1 && x != by2 && x != by3), not included libc.