vector-map[procedure] vector-map proc vec1 vec2 ...
R6RS, SRFI-43: map on elements of vectors, instead of lists. Stores
the results into a newly allocated vector and returns it.
See also vector-map!.
R6RS requires all vectors have the same size. SRFI-43 allows different
sizes, and vector-map works on the index up to the length of the shortest
vector.
See also vector-fold, vector-for-each.
|