vl-sort-i
(vl-sort-i lst comparator)
This function returns the list of indices for
the sorted elements from lst
using the specified comparator function.
Arguments |
lst (list) any list of items |
Return |
(list) returns a list of integers, which represent the indices of the sorted elements |
Example |
(vl-sort-i '("c" "b" "d" "a"
"a" "z") '<) |
Remarks |
duplicate elements are not removed (from the internally sorted lst list) ! |
© Bricsys NV. All rights reserved. |