trisquel-icecat/icecat/intl/icu_capi/bindings/js/CodePointRangeIterator.d.ts
2025-10-06 02:35:48 -06: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;
}