/** * Like `mergeAll`, but runs all streams concurrently. * * @tsplus static effect/core/stream/Stream.Ops mergeAllUnbounded */ export function mergeAllUnbounded(outputBuffer = 16) { return (...streams: Array>): Stream => Stream.fromCollection(streams).flattenPar(Number.MAX_SAFE_INTEGER, outputBuffer) }