Interface ArrayIterator<T>

Describes an Iterator produced by the runtime that inherits from the intrinsic Iterator.prototype.

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

Type Parameters

  • T

Hierarchy (View Summary, Expand)

Methods

  • Parameters

    • ...__namedParameters: [] | [unknown]

    Returns IteratorResult<T, undefined>

MMNEPVFCICPMFPCPTTAAATR