7 lines
92 B
Go
7 lines
92 B
Go
package data
|
|
|
|
// TODO docstring
|
|
type ISortCriteria[T any] interface {
|
|
Weight(t T) int
|
|
}
|