NumMethods returns the total number of methods of interface t.
()
| 85 | |
| 86 | // NumMethods returns the total number of methods of interface t. |
| 87 | func (t *Interface) NumMethods() int { return t.typeSet().NumMethods() } |
| 88 | |
| 89 | // Method returns the i'th method of interface t for 0 <= i < t.NumMethods(). |
| 90 | // The methods are ordered by their unique Id. |