Creates a task skipping the first n items from the stream.
Creates a task taking only the first n items from the stream.
Creates a task executing a side effect for each item without modifying the stream.
Creates a task filtering stream items based on a predicate.
Creates a task filtering out duplicate items.
Creates a task that maps each input item to an output value using a mapper function.
Creates a task that transforms each item into a data source and flattens the results.
Creates a task grouping items into batches of a specified size.
Intermediate operations that transform, filter, or process stream items.
Remarks
Custom Tasks are functions that transform async iterables by returning async generator functions: