llListSortStrided
Function Syntax
list llListSortStrided(
- list ListVariable, // List to sort.
- integer Stride, // Stride length.
- integer Sortkey, // The zero based element within the stride to use as the sort key
- integer Ascending // Boolean. TRUE = result in ascending order, FALSE = result in descending order.
Returns the specified list, sorted by the specified element into blocks of stride in ascending order (if Ascending is TRUE, otherwise descending). Note that sort only works if the first entry of each block is the same datatype.