Type Alias TrieSet

Source
pub type TrieSet = TrieSetSlice<'static>;
Expand description

A type alias for TrieSetSlice<'static>.

Aliased Type§

struct TrieSet { /* private fields */ }

Implementations

Source§

impl<'a> TrieSetSlice<'a>

Source

pub fn contains_char(&self, c: char) -> bool

Returns true if and only if the given Unicode scalar value is in this set.

Source

pub fn contains_u32(&self, cp: u32) -> bool

Returns true if and only if the given codepoint is in this set.

If the given value exceeds the codepoint range (i.e., it’s greater than 0x10FFFF), then this returns false.

Trait Implementations

Source§

impl<'a> Clone for TrieSetSlice<'a>

Source§

fn clone(&self) -> TrieSetSlice<'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 TrieSetSlice<'a>

Source§

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

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

impl<'a> Copy for TrieSetSlice<'a>