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

8 lines
194 B
Go
Raw Normal View History

2022-11-30 18:15:47 +00:00
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
}