I've recently started studying Go and faced next issue. I want to implement Comparable interface. I have next code:
type Comparable interface {
compare(Comparable) int
}
type T struct {
value int
}
func (item T) compare(other T) int {
if item.value < other.value {
return -1
} else if item.value == other.value {
return 0
}
return 1
}
func doComparison(c1, c2 Comparable) {
fmt.Println(c1.compare(c2))
}
func main() {
doComparison(T{1}, T{2})
}
So I'm getting error
cannot use T literal (type T) as type Comparable in argument to doComparison:
T does not implement Comparable (wrong type for compare method)
have compare(T) int
want compare(Comparable) int
And I guess I understand the problem that T
doesn't implement Comparable
because compare method take as a parameter T
but not Comparable
.
Maybe I missed something or didn't understand but is it possible to do such thing?