/** * Zips this chunk with the index of every element, starting from the initial * index value. * * @tsplus getter Chunk zipWithIndex */ export function zipWithIndex(self: Chunk): Chunk { return self.zipWithIndexOffset(0) }