getLoose method

int getLoose(
  1. String name
)

Get the property value matching the given name, using loose matching

Returns -1 if the name is unknown for this property

See the Rust documentation for get_loose for more information.

Implementation

int getLoose(String name) {
  final temp = _FinalizedArena();
  final result = _icu4x_PropertyValueNameToEnumMapper_get_loose_mv1(_ffi, name._utf8AllocIn(temp.arena));
  return result;
}