type reflect.method
12 uses
reflect (current package)
type.go#L322: type method struct {
type.go#L628: func (t *uncommonType) methods() []method {
type.go#L632: return (*[1 << 16]method)(add(unsafe.Pointer(t), uintptr(t.moff), "t.mcount > 0"))[:t.mcount:t.mcount]
type.go#L635: func (t *uncommonType) exportedMethods() []method {
type.go#L639: return (*[1 << 16]method)(add(unsafe.Pointer(t), uintptr(t.moff), "t.xcount > 0"))[:t.xcount:t.xcount]
type.go#L786: func (t *rtype) exportedMethods() []method {
type.go#L2374: methods []method
type.go#L2476: methods = append(methods, method{
type.go#L2500: methods = append(methods, method{
type.go#L2516: methods = append(methods, method{
type.go#L2540: methods = append(methods, method{
type.go#L2614: copy(tt.Elem().Field(2).Slice(0, len(methods)).Interface().([]method), methods)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |