pub struct CodePointSetDataBorrowed<'a> { /* private fields */ }
Expand description

A borrowed wrapper around code point set data, returned by CodePointSetData::as_borrowed(). More efficient to query.

Implementations§

source§

impl CodePointSetDataBorrowed<'static>

source

pub const fn static_to_owned(self) -> CodePointSetData

Cheaply converts a CodePointSetDataBorrowed<'static> into a CodePointSetData.

source§

impl<'a> CodePointSetDataBorrowed<'a>

source

pub fn contains(self, ch: char) -> bool

Check if the set contains a character

use icu_properties::sets;

let alphabetic = sets::alphabetic();

assert!(!alphabetic.contains('3'));
assert!(!alphabetic.contains('੩'));  // U+0A69 GURMUKHI DIGIT THREE
assert!(alphabetic.contains('A'));
assert!(alphabetic.contains('Ä'));  // U+00C4 LATIN CAPITAL LETTER A WITH DIAERESIS
source

pub fn contains32(self, ch: u32) -> bool

Check if the set contains a character as a UTF32 code unit

use icu_properties::sets;

let alphabetic = sets::alphabetic();

assert!(!alphabetic.contains32(0x0A69));  // U+0A69 GURMUKHI DIGIT THREE
assert!(alphabetic.contains32(0x00C4));  // U+00C4 LATIN CAPITAL LETTER A WITH DIAERESIS
source

pub fn iter_ranges(self) -> impl Iterator<Item = RangeInclusive<u32>> + 'a

included in the CodePointSetData

Ranges are returned as RangeInclusive, which is inclusive of its end bound value. An end-inclusive behavior matches the ICU4C/J behavior of ranges, ex: UnicodeSet::contains(UChar32 start, UChar32 end).

Example
use icu_properties::sets;

let alphabetic = sets::alphabetic();
let mut ranges = alphabetic.iter_ranges();

assert_eq!(Some(0x0041..=0x005A), ranges.next()); // 'A'..'Z'
assert_eq!(Some(0x0061..=0x007A), ranges.next()); // 'a'..'z'
source

pub fn iter_ranges_complemented( self ) -> impl Iterator<Item = RangeInclusive<u32>> + 'a

not included in the CodePointSetData

Ranges are returned as RangeInclusive, which is inclusive of its end bound value. An end-inclusive behavior matches the ICU4C/J behavior of ranges, ex: UnicodeSet::contains(UChar32 start, UChar32 end).

Example
use icu_properties::sets;

let alphabetic = sets::alphabetic();
let mut ranges = alphabetic.iter_ranges();

assert_eq!(Some(0x0041..=0x005A), ranges.next()); // 'A'..'Z'
assert_eq!(Some(0x0061..=0x007A), ranges.next()); // 'a'..'z'

Trait Implementations§

source§

impl<'a> Clone for CodePointSetDataBorrowed<'a>

source§

fn clone(&self) -> CodePointSetDataBorrowed<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for CodePointSetDataBorrowed<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> Copy for CodePointSetDataBorrowed<'a>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> ErasedDestructor for Twhere T: 'static,

source§

impl<T> MaybeSendSync for T