zip

ABSTRACT

Zips the two given vector

PARAMETERS
uthe first vector to zip
vthe second vector to zip. u and v are expected to be of the same length
RETURN

a vector of the same length as u and v, but the ith element of the returned vector is {u[i], v[i]}

DECLARATION
func zip(u, v)