chickadee » srfi-214 » flexvector->list

flexvector->list fv #!optional start endprocedure

Creates a list containing the elements in fv between start, which defaults to 0, and end, which defaults to the length of fv. reverse-flexvector->list is similar, but creates a list with elements in reverse order of fv. Both start and end are clamped to the range [0, (flexvector-length fv)). It is an error if end is less than start.