type reflect.Method

10 uses

	reflect (current package)
		type.go#L61: 	Method(int) Method
		type.go#L71: 	MethodByName(string) (Method, bool)
		type.go#L606: type Method struct {
		type.go#L623: func (m Method) IsExported() bool {
		type.go#L845: func (t *rtype) Method(i int) (m Method) {
		type.go#L879: func (t *rtype) MethodByName(name string) (m Method, ok bool) {
		type.go#L886: 		return Method{}, false
		type.go#L894: 	return Method{}, false
		type.go#L1103: func (t *interfaceType) Method(i int) (m Method) {
		type.go#L1125: func (t *interfaceType) MethodByName(name string) (m Method, ok bool) {