/** * Flattens a collection of collections of events into a single collection * of events. * * @tsplus getter ParSeq flatten */ export function flatten(self: ParSeq>): ParSeq { return self.flatMap(identity) }