iterRangesForValue method
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
final aEdges = [this];
final result = _icu4x_CodePointMapData8_iter_ranges_for_value_mv1(_ffi, value);
return CodePointRangeIterator._fromFfi(result, [], aEdges);
}