List of functions and data types in Array
[Pair<a, b> ] zip([a] xs, [b] ys)
Arguments
xs: The first list
xs: The second list
Usage
Turn a pair of lists into a list of pairs. This is equivalent to using zipWith with this function:
(a,b) zipfn(a fst, b snd) {
return (a,b);
}
Related