A task consumes the items of a Feed and reports a new feed carrying new ones, transforming, filtering,
reordering or regrouping items along the way; the reported feed accepts further tasks, so tasks chain into longer
pipes.
The task draws from a feed, so it may either iterate it with for await or compose it with further tasks and sinks,
delegating the whole transformation or part of it to operations already available.
Caution
The feed handed over and the feed reported must both be assumed to be drained by a single pass.
Intermediate operation applied to a feed.
A task consumes the items of a Feed and reports a new feed carrying new ones, transforming, filtering, reordering or regrouping items along the way; the reported feed accepts further tasks, so tasks chain into longer pipes.
The task draws from a feed, so it may either iterate it with
for awaitor compose it with further tasks and sinks, delegating the whole transformation or part of it to operations already available.The feed handed over and the feed reported must both be assumed to be drained by a single pass.