simpleTitlecase method

Rune simpleTitlecase(
  1. Rune ch
)

Returns the simple titlecase 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::titlecase_segment.

See the Rust documentation for simple_titlecase for more information.

Implementation

Rune simpleTitlecase(Rune ch) {
  final result = _icu4x_CaseMapper_simple_titlecase_mv1(_ffi, ch);
  return result;
}