simpleLowercase method

Rune simpleLowercase(
  1. Rune ch
)

Returns the simple lowercase mapping of the given character.

This function only implements simple and common mappings. Full mappings, which can map one char to a string, are not included. For full mappings, use CaseMapper::lowercase.

See the Rust documentation for simple_lowercase for more information.

Implementation

Rune simpleLowercase(Rune ch) {
  final result = _icu4x_CaseMapper_simple_lowercase_mv1(_ffi, ch);
  return result;
}