simpleFold method

Rune simpleFold(
  1. Rune ch
)

Returns the simple casefolding of the given character.

This function only implements simple folding. For full folding, use CaseMapper::fold.

See the Rust documentation for simple_fold for more information.

Implementation

Rune simpleFold(Rune ch) {
  final result = _icu4x_CaseMapper_simple_fold_mv1(_ffi, ch);
  return result;
}