Since Go will need to modify interface with new type list anyway. Is it good if we can do this:
```
type Weighter interface {
Weight int
}
func CompareWeight(type T Weighter) (a, b T) bool {
return a.Weight < b.Weight
}
```
Instead of:
```
type Weighter interface {
GetWeight() int
}
func CompareWeight(type T Weighter) (a, b T) bool {
return a.Weight() < b.Weight()
}
```