algorithms/sorting/sort.go
2021-12-16 17:46:10 +02:00

3 lines
68 B
Go

package sorting
type SliceSorter[T any] func([]T, func(T, T) bool)