go/types.Interface.NumExplicitMethods (method)

5 uses

	go/types (current package)
		interface.go#L94: func (t *Interface) NumExplicitMethods() int { return len(t.methods) }

	golang.org/x/tools/internal/gcimporter
		iexport.go#L805: 		n = t.NumExplicitMethods()
		iimport.go#L464: 	return iface.NumEmbeddeds() == 0 && iface.NumExplicitMethods() == 0
		ureader_yes.go#L566: 				if iface, ok := underlying.(*types.Interface); ok && iface.NumExplicitMethods() != 0 {
		ureader_yes.go#L567: 					methods := make([]*types.Func, iface.NumExplicitMethods())