extra-iterator
    Preparing search index...

    Type Alias ExtraIteratorSource<T>

    ExtraIteratorSource:
        | Iterator<T, any, any>
        | Iterable<T, any, any>
        | ArrayLike<T>

    A type that represents all the possible sources that can be used to create an ExtraIterator.

    Type Parameters

    • T

      The type of the values yielded by the iterator; or the type of the elements of the array or array-like object.

    This includes any object that is either an Iterator, an Iterable, or an "array-like" object (i.e., an object that has a length property that is a number and numerically indexed elements).