simpleLowercaseWithCompiledData static method

int simpleLowercaseWithCompiledData(
  1. Rune ch
)

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;
}