Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NumEmbeddeds (0.17 sec)

  1. src/cmd/api/main_test.go

    		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(' ')
    		}
    		buf.WriteString("}")
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  2. api/go1.5.txt

    pkg go/types, method (*Interface) Empty() bool
    pkg go/types, method (*Interface) ExplicitMethod(int) *Func
    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
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
Back to top