Function skip_search

Source
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_runs must be greater than std::char::MAX.
  • The start indices of all elements in short_offset_runs must be less than OFFSETS.