/** * Zips this chunk with the specified chunk using the specified combiner. * * @tsplus static Chunk.Aspects zip * @tsplus pipeable Chunk zip */ export function zip(that: Chunk) { return (self: Chunk): Chunk<[A, B]> => self.zipWith(that, (a, b) => [a, b]) }