rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
18 lines • 533 B
TypeScript
import { iteratorConsumeAll } from "./impl/iterator-consume-all.js";
/**
* @public
* Utilities relating to `IterableIterator` & generators.
*/
export declare class _Iterator {
/** {@inheritDoc iteratorEmptyIterator} */
static emptyIterator: IterableIterator<any> & {
result: {
done: true;
value: any;
};
};
/** {@inheritDoc iteratorConsumeAll} */
static readonly consumeAll: typeof iteratorConsumeAll;
private constructor();
}
//# sourceMappingURL=_iterator.d.ts.map