uppercaseWithCompiledData static method
Returns the full uppercase mapping of the given string, using compiled data (avoids having to allocate a CaseMapper object)
See the Rust documentation for uppercase
for more information.
Implementation
static String uppercaseWithCompiledData(String s, Locale locale) {
final temp = _FinalizedArena();
final write = _Write();
_icu4x_CaseMapper_uppercase_with_compiled_data_mv1(s._utf8AllocIn(temp.arena), locale._ffi, write._ffi);
return write.finalize();
}