algorithms/sorting/sort.go

4 lines
68 B
Go
Raw Normal View History

2021-12-06 08:01:25 +02:00
package sorting
2021-12-16 17:46:10 +02:00
type SliceSorter[T any] func([]T, func(T, T) bool)