/** * Partitions the elements of this chunk into two chunks. * * @tsplus getter Chunk separate */ export function separate(self: Chunk>): readonly [Chunk, Chunk] { return self.partitionMap(identity) }