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.