Uneventful
    Preparing search index...

    Type Alias EachResult<T>

    The result type returned from calls to Each.next()

    type EachResult<T> = {
        item: T;
        next: Suspend<void>;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    item: T

    The value provided by the source being iterated

    next: Suspend<void>

    A suspend callback that must be yield-ed before the next call to the iterator's .next() method. (That is, you must yield next it exactly once per loop pass. See each() for more details.)