UNPKG

@thi.ng/transducers-async

Version:

Async versions of various highly composable transducers, reducers and iterators

11 lines 349 B
/** * Async iterator version of [thi.ng/rstream's merge() * construct](https://docs.thi.ng/umbrella/rstream/functions/merge.html). * * @remarks * Also see {@link sync} for an alternative way of merging. * * @param src */ export declare function merge<T>(src: AsyncIterable<T>[]): AsyncIterableIterator<T>; //# sourceMappingURL=merge.d.ts.map