Struct ucd_trie::TrieSetSlice
source · pub struct TrieSetSlice<'a> { /* private fields */ }
Expand description
A borrowed trie set.
Implementations§
source§impl<'a> TrieSetSlice<'a>
impl<'a> TrieSetSlice<'a>
sourcepub fn contains_char(&self, c: char) -> bool
pub fn contains_char(&self, c: char) -> bool
Returns true if and only if the given Unicode scalar value is in this set.
sourcepub fn contains_u32(&self, cp: u32) -> bool
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>
impl<'a> Clone for TrieSetSlice<'a>
source§fn clone(&self) -> TrieSetSlice<'a>
fn clone(&self) -> TrieSetSlice<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more