tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

CodePointRangeIterator.d.ts (561B)


      1 // generated by diplomat-tool
      2 import type { CodePointRangeIteratorResult } from "./CodePointRangeIteratorResult"
      3 import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
      4 
      5 
      6 /**
      7 * An iterator over code point ranges, produced by `CodePointSetData` or
      8 * one of the `CodePointMapData` types
      9 */
     10 
     11 
     12 export class CodePointRangeIterator {
     13    get ffiValue(): pointer;
     14 
     15 
     16    /**
     17     * Advance the iterator by one and return the next range.
     18     *
     19     * If the iterator is out of items, `done` will be true
     20     */
     21    next(): CodePointRangeIteratorResult;
     22 }