IsComparable reports whether each type in interface t's type set is comparable.
()
| 95 | |
| 96 | // IsComparable reports whether each type in interface t's type set is comparable. |
| 97 | func (t *Interface) IsComparable() bool { return t.typeSet().IsComparable(nil) } |
| 98 | |
| 99 | // IsMethodSet reports whether the interface t is fully described by its method set. |
| 100 | func (t *Interface) IsMethodSet() bool { return t.typeSet().IsMethodSet() } |