unsafe fn skip_search<const SOR: usize, const OFFSETS: usize>(
needle: char,
short_offset_runs: &[ShortOffsetRunHeader; SOR],
offsets: &[u8; OFFSETS],
) -> bool🔬This is a nightly-only experimental API. (
unicode_internals)Expand description
§Safety
- The last element of
short_offset_runsmust be greater thanstd::char::MAX. - The start indices of all elements in
short_offset_runsmust be less thanOFFSETS.