iter-fns - v0.13.0
    Preparing search index...

    Interface Iterator<T>

    An iterator.

    This is a stripped down version of the built in Iterator type that only supports the Iterator.next operation.

    interface Iterator<T> {
        next(): IteratorResult<T>;
    }

    Type Parameters

    • T
    Index

    Methods

    Methods

    • Advances the iterator.

      Returns IteratorResult<T>