Trakteer.js
    Preparing search index...

    Interface ArrayIterator<T>

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

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

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Methods

    • Parameters

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

      Returns IteratorResult<T, undefined>