Commit 398e861d authored by Jaana Burcu Dogan's avatar Jaana Burcu Dogan

reflect: clarify that NumMethod returns only the number of exported methods

Fixes #17686.

Change-Id: I7d07c367e50b448579f9855bea43df76ddb82bd0
Reviewed-on: https://go-review.googlesource.com/32420Reviewed-by: default avatarRob Pike <r@golang.org>
parent 53c004f9
...@@ -63,7 +63,7 @@ type Type interface { ...@@ -63,7 +63,7 @@ type Type interface {
// method signature, without a receiver, and the Func field is nil. // method signature, without a receiver, and the Func field is nil.
MethodByName(string) (Method, bool) MethodByName(string) (Method, bool)
// NumMethod returns the number of methods in the type's method set. // NumMethod returns the number of exported methods in the type's method set.
NumMethod() int NumMethod() int
// Name returns the type's name within its package. // Name returns the type's name within its package.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment