Warning: This is the manual of the legacy Guile 2.2 series. You may want to read the manual of the current stable series instead.
Previous: SRFI-43 Mutators, Up: SRFI-43 [Contents][Index]
Return a newly allocated list containing the elements in vec between start and end. start defaults to 0 and end defaults to the length of vec.
Like vector->list
, but the resulting list contains the specified
range of elements of vec in reverse order.
Return a newly allocated vector of the elements from proper-list with indices between start and end. start defaults to 0 and end defaults to the length of proper-list. Note that SRFI 43 does not document the start and end arguments, but both its reference implementation and Guile’s implementation support them.
Like list->vector
, but the resulting vector contains the specified
range of elements of proper-list in reverse order. Note that SRFI
43 does not document the start and end arguments, but both
its reference implementation and Guile’s implementation support them.