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) {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |