seq->vector
converts sequences to a vector
Usage:
(seq->vector seq+)
Concatenate a set of sequences into a vector. Unlike the standard concat
function, which is lazily computed, the result of this function will be materialized immediately.
An Example
(define x
(map (lambda (x) (\* x 2))
'(1 2 3 4)))
(seq->vector '(1 2 3 4) x)