Files
crowsnest/internal/data/ISearchCriteria.go
2025-01-02 15:27:53 +01:00

8 lines
226 B
Go

package data
// Defines a Weight function that determines a order on type T. As an example
// this may be used to sort article by date or filter for a search term.
type ISortCriteria[T any] interface {
Weight(t T) int
}