- vector->list vectorprocedure
- list->vector listprocedure
Vector->list returns a newly allocated list of the objects contained in the elements of vector. List->vector returns a newly created vector initialized to the elements of the list list.
(vector->list '#(dah dah didah)) ===> (dah dah didah) (list->vector '(dididit dah)) ===> #(dididit dah)