go/types.Interface.NumExplicitMethods (method)
6 uses
go/types (current package)
interface.go#L94: func (t *Interface) NumExplicitMethods() int { return len(t.methods) }
iter.go#L36: for i := range t.NumExplicitMethods() {
golang.org/x/tools/internal/gcimporter
iexport.go#L1132: n = t.NumExplicitMethods()
iimport.go#L548: return iface.NumEmbeddeds() == 0 && iface.NumExplicitMethods() == 0
ureader_yes.go#L569: if iface, ok := types.Unalias(underlying).(*types.Interface); ok && iface.NumExplicitMethods() != 0 {
ureader_yes.go#L570: methods := make([]*types.Func, iface.NumExplicitMethods())
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)