5 lines
169 B
Go
5 lines
169 B
Go
package sorting
|
|
|
|
// TODO: compare function should receive pointers to slice elements
|
|
// to prevent unnecessary coping
|
|
type SliceSorter[T any] func([]T, func(T, T) bool)
|