1
0
Fork 0
firefox/intl/icu_capi/bindings/js/CodePointRangeIterator.d.ts
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

16 lines
421 B
TypeScript

import { CodePointRangeIteratorResult } from "./CodePointRangeIteratorResult";
/**
* An iterator over code point ranges, produced by `ICU4XCodePointSetData` or one of the `ICU4XCodePointMapData` types
*/
export class CodePointRangeIterator {
/**
* Advance the iterator by one and return the next range.
* If the iterator is out of items, `done` will be true
*/
next(): CodePointRangeIteratorResult;
}