zip3

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.
zip3 takes three sequences and returns a sequence of triples, analogous to zip.
Zip three Streams together
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.
The zip3 function behaves as the zip function, but works on three streams.
Zip three arrays
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
Like zip, but works with 3 collections.
Zip three infinite lists.
zip3 takes three sequences and returns a sequence of triples, analogous to zip.