iterRanges method

CodePointRangeIterator iterRanges()

Produces an iterator over ranges of code points contained in this set

See the Rust documentation for iter_ranges for more information.

Implementation

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