Derive zip.

This commit is contained in:
sforman
2023-10-09 11:45:28 -07:00
parent 787dc6a7b3
commit da0e1e685e
5 changed files with 137 additions and 27 deletions
+1 -1
View File
@@ -3362,5 +3362,5 @@ from each list. The smallest list sets the length of the result list.
[1 2 3] [4 5 6] zip
-------------------------
[[4 1] [5 2] [6 3]]
[[1 4] [2 5] [3 6]]