interface IterableIterator<T> {
    [iterator](): IterableIterator<T>;
    next(...args: [] | [undefined]): IteratorResult<T, any>;
    return?(value?: any): IteratorResult<T, any>;
    throw?(e?: any): IteratorResult<T, any>;
}

Type Parameters

  • T

Hierarchy-Diagram

UML class diagram of IterableIterator
Legend
icon for an interface in the UML class diagram interface
icon for a public method in the UML class diagram public method

Hierarchy (view full)

Methods

  • Parameters

    • Rest ...args: [] | [undefined]

    Returns IteratorResult<T, any>