containsStr method
- String s
Checks whether the string is in the set.
See the Rust documentation for contains_str
for more information.
Implementation
bool containsStr(String s) {
final temp = _FinalizedArena();
final result = _icu4x_ExemplarCharacters_contains_str_mv1(_ffi, s._utf8AllocIn(temp.arena));
return result;
}