mapv
function
(mapv func &rest seqs)
As map but returns a vector instead of a lazy list. Equivalent to (as-vector (apply map func seqs)).
map
(as-vector (apply map func seqs))
make-html > (mapv + '(1 2 3) '(3 4 5)) it: #v(4 6 8)