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