@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
9 lines (8 loc) • 306 B
JavaScript
import * as MergeAll from "./mergeAll.mjs";
/**
* Like `mergeAll`, but runs all streams concurrently.
*/
export function mergeAllUnbounded(outputBuffer = 16) {
return (...streams) => MergeAll.mergeAll(Number.MAX_SAFE_INTEGER, outputBuffer)(...streams);
}
//# sourceMappingURL=mergeAllUnbounded.mjs.map