/** * @tsplus static Tree.Aspects zip * @tsplus pipeable Tree zip */ export function zip(that: Tree) { return (self: Tree): Tree => self.zipWith(that, (a, b) => [a, b]) }