simpleUppercase method
- Rune ch
Returns the simple uppercase 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::uppercase
.
See the Rust documentation for simple_uppercase
for more information.
Implementation
Rune simpleUppercase(Rune ch) {
final result = _icu4x_CaseMapper_simple_uppercase_mv1(_ffi, ch);
return result;
}