Previous: , Up: srfi vector spec   [Index]


2.23.4.8 Conversion

Function: vector->list vec [start [end]] -> proper-list

R5RS Create a list containing the elements in vec between start, which defaults to 0, and end, which defaults to the length of vec.

Function: reverse-vector->list vec [start [end]] -> proper-list

Like vector->list, but the resulting list contains the elements in reverse between the the specified range.

Function: list->vector proper-list -> vector

R5RS Create a vector of elements from proper-list.

Function: reverse-list->vector proper-list -> vector

Like list->vector, but the resulting list contains the elements in reverse of proper-list.