danmatrix
    Preparing search index...

    Interface MatrixIterator<T>

    The MatrixIterator interface

    interface MatrixIterator<T> {
        current(): T | undefined;
        hasNext(): boolean;
        next(): T | undefined;
        rewind(): void;
    }

    Type Parameters

    • T

    Implemented by

    Index

    Methods