kysely
    Preparing search index...

    Interface ArrayIterator<T>

    interface ArrayIterator<T> {
        "[dispose]"(): void;
        "[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

    Index

    Methods