/** * Flattens this stream-of-streams into a stream made of the concatenation in * strict order of all the streams. * * @tsplus getter effect/core/stream/Stream flatten */ export function flatten( self: Stream> ): Stream { return self.flatMap(identity) }