@metreeca/pipe - v0.9.11
    Preparing search index...

    Interface Task<V, R>

    Transformation that processes stream items and yields results.

    Tasks are intermediate operations that can be chained together. They transform, filter, or otherwise process items while maintaining the stream.

    Type Parameters

    • V

      The type of input values

    • R = V

      The type of output values (defaults to V)

    • Processes an async iterable and yields transformed results.

      Parameters

      • value: AsyncIterable<V>

        The source async iterable to process

      Returns AsyncIterable<R | undefined>

      An async iterable of transformed values (may include undefined for filtering)