/** * Like `flattenPar`, but executes all streams concurrently. * * @tsplus static effect/core/stream/Stream.Aspects flattenParUnbounded * @tsplus pipeable effect/core/stream/Stream flattenParUnbounded */ export function flattenParUnbounded(outputBuffer = 16) { return (self: Stream>): Stream => self.flatMapPar(Number.POSITIVE_INFINITY, identity, outputBuffer) }