/** * Concatenates all of the streams in the chunk to one stream. * * @tsplus static effect/core/stream/Stream.Ops concatAll */ export function concatAll( streams: Chunk> ): Stream { return streams.reduce(Stream.empty as Stream, (acc, a) => acc + a) }