type reflect.Method

10 uses

	reflect (current package)
		type.go#L61: 	Method(int) Method
		type.go#L71: 	MethodByName(string) (Method, bool)
		type.go#L413: type Method struct {
		type.go#L430: func (m Method) IsExported() bool {
		type.go#L584: func (t *rtype) Method(i int) (m Method) {
		type.go#L618: func (t *rtype) MethodByName(name string) (m Method, ok bool) {
		type.go#L625: 		return Method{}, false
		type.go#L647: 	return Method{}, false
		type.go#L832: func (t *interfaceType) Method(i int) (m Method) {
		type.go#L854: func (t *interfaceType) MethodByName(name string) (m Method, ok bool) {