7 lines
96 B
Go
7 lines
96 B
Go
package data
|
|
|
|
// TODO docstring
|
|
type ISearchCriteria[T any] interface {
|
|
Matches(t T) bool
|
|
}
|