- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for NumMethods (0.05 seconds)
-
api/go1.5.txt
pkg go/types, method (*Interface) Method(int) *Func pkg go/types, method (*Interface) NumEmbeddeds() int pkg go/types, method (*Interface) NumExplicitMethods() int pkg go/types, method (*Interface) NumMethods() int pkg go/types, method (*Interface) String() string pkg go/types, method (*Interface) Underlying() Type pkg go/types, method (*Label) Exported() bool pkg go/types, method (*Label) Id() string
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jul 30 21:14:09 GMT 2015 - 46.6K bytes - Click Count (0) -
src/cmd/api/main_test.go
case *types.Interface: buf.WriteString("interface{") if typ.NumMethods() > 0 || typ.NumEmbeddeds() > 0 { buf.WriteByte(' ') } if typ.NumMethods() > 0 { buf.WriteString(strings.Join(sortedMethodNames(typ), ", ")) } if typ.NumEmbeddeds() > 0 { buf.WriteString(strings.Join(w.sortedEmbeddeds(typ), ", ")) } if typ.NumMethods() > 0 || typ.NumEmbeddeds() > 0 { buf.WriteByte(' ') }
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Mar 02 13:20:41 GMT 2026 - 31.4K bytes - Click Count (0)