rename stable_sort to stablesort

This commit is contained in:
Dubiousjim 2024-06-11 21:07:15 +02:00
parent 8f4646cffe
commit bdc65945f8

View file

@ -21,7 +21,7 @@ The best stable sorting algorithms I know of are Python's [timsort](https://en.w
The proposed API would be:
`table.stable_sort <V>: (t: {V}, lt: ((V, V) -> boolean)?, reverse: boolean?) -> ()`
`table.stablesort <V>: (t: {V}, lt: ((V, V) -> boolean)?, reverse: boolean?) -> ()`
(Or alternatively, this could replace `table.sort` but be behind a feature flag.)