doddle
    Preparing search index...

    Type Alias IterableOrIterator<E>

    IterableOrIterator:
        | AsyncIterable<E>
        | AsyncIterator<E>
        | ObjectIterable<E>
        | Iterator<E>
        | DoddleReadableStream<E>

    Represents any supported iterable or iterator type for async sequences.

    ℹ️ Used when an input needs to be sequential or convertible to ASeq.

    Type Parameters

    • E

      The element type.