1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-18 01:50:50 +00:00
strimertul/utils/equal.go
2022-11-30 19:15:47 +01:00

8 lines
194 B
Go

package utils
// Comparable is a workaround for Go incomplete implementation of generics
// See https://github.com/golang/go/issues/56548
type Comparable interface {
Equals(Comparable) bool
}