zip3 -package:containers

zip3 takes three lists and returns a list of triples, analogous to zip. It is capable of list fusion, but it is restricted to its first list argument and its resulting list.
Zip together three vectors into a vector of triples.
Zip together three vectors into a vector of triples.
O(1) Zip 3 vectors.
O(1) Zip 3 vectors.
Zip three Streams together
zip3 takes three sequences and returns a sequence of triples, analogous to zip.
zip together three vectors into a vector of triples
O(1) Zip 3 vectors
O(1). Zip some unboxed arrays. The shapes must be identical else error.
Zip three arrays
The zip3 function behaves as the zip function, but works on three streams.
Zip 3 lists of the same size
zip3 takes three vectors and returns a vector of corresponding triplets.
>>> zip3 (1:>2:>3:>4:>Nil) (4:>3:>2:>1:>Nil) (5:>6:>7:>8:>Nil)
(1,4,5) :> (2,3,6) :> (3,2,7) :> (4,1,8) :> Nil