chickadee » srfi-132 » vector-sort

vector-sort < v #!optional start endprocedure
vector-stable-sort < v #!optional start endprocedure

These procedures do not alter their inputs, but allocate a fresh vector as their result, of length end - start. The vector-stable-sort procedure with no optional arguments is equivalent to the R6RS vector-sort procedure. It is also equivalent to the SRFI 95 sort procedure when applied to vectors, except that it does not accept a key procedure.