1
0
Fork 0
firefox/intl/icu_capi/bindings/js/CodePointRangeIteratorResult.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

13 lines
586 B
TypeScript

import { u32 } from "./diplomat-runtime"
/**
* Result of a single iteration of {@link CodePointRangeIterator `CodePointRangeIterator`}. Logically can be considered to be an `Option<RangeInclusive<u32>>`,
* `start` and `end` represent an inclusive range of code points start, end, and `done` will be true if the iterator has already finished. The last contentful iteration will NOT produce a range done=true, in other words `start` and `end` are useful values if and only if `done=false`.
*/
export class CodePointRangeIteratorResult {
start: u32;
end: u32;
done: boolean;
}