simpleLowercaseWithCompiledData static method
Returns the simple lowercase mapping of the given character, using compiled data (avoids having to allocate a CaseMapper object)
See the Rust documentation for simple_lowercase for more information.
Implementation
static Rune simpleLowercaseWithCompiledData(Rune ch) {
final result = _icu4x_CaseMapper_simple_lowercase_with_compiled_data_mv1(ch);
return result;
}