switching to use 'sliceStable'

This commit is contained in:
0syntrax0 2024-10-21 15:47:55 -05:00
parent 9f63a51280
commit 80a84c0803

View file

@ -8,14 +8,14 @@ import (
// sort any slice ASENDING
func SortSliceASC[T constraints.Ordered](s []T) {
sort.Slice(s, func(i, j int) bool {
sort.SliceStable(s, func(i, j int) bool {
return s[i] < s[j]
})
}
// sort any slice DESCENDING
func SortSliceDESC[T constraints.Ordered](s []T) {
sort.Slice(s, func(i, j int) bool {
sort.SliceStable(s, func(i, j int) bool {
return s[i] > s[j]
})
}