Creates a pipe from a data source.
Creates a pipe that yields a sequence of numbers within a range.
Creates a pipe by repeatedly calling a generator function until exhausted.
Chains multiple data sources into a single stream, preserving source order.
Merges multiple data sources into a single stream, yielding items as they become available.
Factory functions that create new pipes from various input sources.
Remarks
Custom Feeds are functions that create new pipes:
When creating custom feeds, always wrap async generators, async generator functions, or
AsyncIterable<T>objects with items to ensureundefinedfiltering and proper pipe interface integration.