reflect.Type.NumMethod (method)

7 uses

	reflect (current package)
		type.go#L75: 	NumMethod() int
		value.go#L2739: 	if typ.NumMethod() == 0 {

	encoding/asn1
		asn1.go#L688: 	if ifaceType := fieldType; ifaceType.Kind() == reflect.Interface && ifaceType.NumMethod() == 0 {
		marshal.go#L584: 	if v.Kind() == reflect.Interface && v.Type().NumMethod() == 0 {

	encoding/json
		decode.go#L474: 		if v.Type().NumMethod() > 0 && v.CanInterface() {

	src.elv.sh/pkg/eval/vals
		struct_map.go#L66: 	m := t.NumMethod()

	src.elv.sh/pkg/rpc
		server.go#L277: 	for m := 0; m < typ.NumMethod(); m++ {