iterRangesForScript method

CodePointRangeIterator iterRangesForScript(
  1. int script
)

Get a list of ranges of code points that contain this script in their Script_Extensions values

See the Rust documentation for get_script_extensions_ranges for more information.

Implementation

CodePointRangeIterator iterRangesForScript(int script) {
  // This lifetime edge depends on lifetimes: 'a
  core.List<Object> aEdges = [this];
  final result = _icu4x_ScriptWithExtensions_iter_ranges_for_script_mv1(_ffi, script);
  return CodePointRangeIterator._fromFfi(result, [], aEdges);
}