simpleFoldTurkic method
- Rune ch
Returns the simple casefolding of the given character in the Turkic locale
This function only implements simple folding.
For full folding, use CaseMapper::fold_turkic
.
See the Rust documentation for simple_fold_turkic
for more information.
Implementation
Rune simpleFoldTurkic(Rune ch) {
final result = _icu4x_CaseMapper_simple_fold_turkic_mv1(_ffi, ch);
return result;
}