pub struct CaseMapCloserBorrowed<'a> { /* private fields */ }
Expand description
A borrowed CaseMapCloser
.
See methods or CaseMapCloser
for examples.
Implementations§
Source§impl CaseMapCloserBorrowed<'static>
impl CaseMapCloserBorrowed<'static>
Sourcepub const fn new() -> CaseMapCloserBorrowed<'static>
pub const fn new() -> CaseMapCloserBorrowed<'static>
A constructor which creates a CaseMapCloserBorrowed
using compiled data.
§Examples
use icu::casemap::CaseMapCloser;
use icu::collections::codepointinvlist::CodePointInversionListBuilder;
let cm = CaseMapCloser::new();
let mut builder = CodePointInversionListBuilder::new();
let found = cm.add_string_case_closure_to("ffi", &mut builder);
assert!(found);
let set = builder.build();
assert!(set.contains('ffi'));
let mut builder = CodePointInversionListBuilder::new();
let found = cm.add_string_case_closure_to("ss", &mut builder);
assert!(found);
let set = builder.build();
assert!(set.contains('ß'));
assert!(set.contains('ẞ'));
✨ Enabled with the compiled_data
Cargo feature.
Sourcepub const fn static_to_owned(self) -> CaseMapCloser<CaseMapper>
pub const fn static_to_owned(self) -> CaseMapCloser<CaseMapper>
Cheaply converts a [CaseMapCloserBorrowed<'static>
] into a CaseMapCloser
.
Note: Due to branching and indirection, using CaseMapCloser
might inhibit some
compile-time optimizations that are possible with CaseMapCloserBorrowed
.
Source§impl CaseMapCloserBorrowed<'_>
impl CaseMapCloserBorrowed<'_>
Sourcepub fn add_case_closure_to<S: ClosureSink>(self, c: char, set: &mut S)
pub fn add_case_closure_to<S: ClosureSink>(self, c: char, set: &mut S)
Adds all simple case mappings and the full case folding for c
to set
.
Also adds special case closure mappings.
In other words, this adds all strings/characters that this casemaps to, as well as all characters that may casemap to this one.
The character itself is not added.
For example, the mappings
- for s include long s
- for sharp s include ss
- for k include the Kelvin sign
This function is identical to CaseMapperBorrowed::add_case_closure_to()
; if you don’t
need Self::add_string_case_closure_to()
consider using a CaseMapper
to avoid
loading additional data.
§Examples
use icu::casemap::CaseMapCloser;
use icu::collections::codepointinvlist::CodePointInversionListBuilder;
let cm = CaseMapCloser::new();
let mut builder = CodePointInversionListBuilder::new();
cm.add_case_closure_to('s', &mut builder);
let set = builder.build();
assert!(set.contains('S'));
assert!(set.contains('ſ'));
assert!(!set.contains('s')); // does not contain itself
Sourcepub fn add_string_case_closure_to<S: ClosureSink>(
self,
s: &str,
set: &mut S,
) -> bool
pub fn add_string_case_closure_to<S: ClosureSink>( self, s: &str, set: &mut S, ) -> bool
Finds all characters and strings which may casemap to s
as their full case folding string
and adds them to the set. Includes the full case closure of each character mapping.
In other words, this performs a reverse full case folding and then adds the case closure items of the resulting code points.
The string itself is not added to the set.
Returns true if the string was found
§Examples
use icu::casemap::CaseMapCloser;
use icu::collections::codepointinvlist::CodePointInversionListBuilder;
let cm = CaseMapCloser::new();
let mut builder = CodePointInversionListBuilder::new();
let found = cm.add_string_case_closure_to("ffi", &mut builder);
assert!(found);
let set = builder.build();
assert!(set.contains('ffi'));
let mut builder = CodePointInversionListBuilder::new();
let found = cm.add_string_case_closure_to("ss", &mut builder);
assert!(found);
let set = builder.build();
assert!(set.contains('ß'));
assert!(set.contains('ẞ'));
Trait Implementations§
Source§impl<'a> Clone for CaseMapCloserBorrowed<'a>
impl<'a> Clone for CaseMapCloserBorrowed<'a>
Source§fn clone(&self) -> CaseMapCloserBorrowed<'a>
fn clone(&self) -> CaseMapCloserBorrowed<'a>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'a> Debug for CaseMapCloserBorrowed<'a>
impl<'a> Debug for CaseMapCloserBorrowed<'a>
Source§impl Default for CaseMapCloserBorrowed<'static>
impl Default for CaseMapCloserBorrowed<'static>
impl<'a> Copy for CaseMapCloserBorrowed<'a>
Auto Trait Implementations§
impl<'a> Freeze for CaseMapCloserBorrowed<'a>
impl<'a> RefUnwindSafe for CaseMapCloserBorrowed<'a>
impl<'a> Send for CaseMapCloserBorrowed<'a>
impl<'a> Sync for CaseMapCloserBorrowed<'a>
impl<'a> Unpin for CaseMapCloserBorrowed<'a>
impl<'a> UnwindSafe for CaseMapCloserBorrowed<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more