map-to

[generic] map-to class proc coll1 coll2 ...

Gauche: generalized map. Apply proc to collections, and returns a collection whose class is specified by class.

(map-to <vector> + '(1 2 3) '#(4 5 6)) => #(5 7 9)

See also map, coerce-to.