foldTurkic method

String foldTurkic(
  1. String s
)

Case-folds the characters in the given string using Turkic (T) mappings for dotted/dotless I.

See the Rust documentation for fold_turkic for more information.

Implementation

String foldTurkic(String s) {
  final temp = _FinalizedArena();
  final write = _Write();
  _icu4x_CaseMapper_fold_turkic_mv1(_ffi, s._utf8AllocIn(temp.arena), write._ffi);
  return write.finalize();
}