vector->list -- r7rs Definition
§

Kind
§

converter;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(vector->list vector)
(vector->list vector start)
(vector->list vector start end)
(list->vector list)

The vector->list procedure returns a newly allocated list of the objects contained in the elements of vector between start and end. The list->vector procedure returns a newly created vector initialized to the elements of the list list.

In both procedures, order is preserved.

(vector->list '#(dah dah didah))      ===>  (dah dah didah)
(vector->list '#(dah dah didah) 1 2)  ===>  (dah)
(list->vector '(dididit dah))         ===>  #(dididit dah)

The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§