iterRangesForValue method
- int value
Produces an iterator over ranges of code points that map to value
See the Rust documentation for iter_ranges_for_value
for more information.
Implementation
CodePointRangeIterator iterRangesForValue(int value) {
// This lifetime edge depends on lifetimes: 'a
core.List<Object> aEdges = [this];
final result = _icu4x_CodePointMapData16_iter_ranges_for_value_mv1(_ffi, value);
return CodePointRangeIterator._fromFfi(result, [], aEdges);
}