Method returns the i'th method of interface t for 0 <= i < t.NumMethods(). The methods are ordered by their unique Id.
(i int)
| 89 | // Method returns the i'th method of interface t for 0 <= i < t.NumMethods(). |
| 90 | // The methods are ordered by their unique Id. |
| 91 | func (t *Interface) Method(i int) *Func { return t.typeSet().Method(i) } |
| 92 | |
| 93 | // Empty reports whether t is the empty interface. |
| 94 | func (t *Interface) Empty() bool { return t.typeSet().IsAll() } |