normalizingEq method

bool normalizingEq(
  1. String other
)

See the Rust documentation for normalizing_eq for more information.

Implementation

bool normalizingEq(String other) {
  final temp = _FinalizedArena();
  final result = _icu4x_Locale_normalizing_eq_mv1(_ffi, other._utf8AllocIn(temp.arena));
  return result;
}