Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsVariadic (0.15 sec)

  1. src/cmd/compile/internal/types/identity.go

    		// We intentionally ignore receiver parameters for type
    		// equality, because they're never relevant.
    		if t1.NumParams() != t2.NumParams() ||
    			t1.NumResults() != t2.NumResults() ||
    			t1.IsVariadic() != t2.IsVariadic() {
    			return false
    		}
    
    		fs1 := t1.ParamsResults()
    		fs2 := t2.ParamsResults()
    		for i, f1 := range fs1 {
    			if !identical(f1.Type, fs2[i].Type, flags, assumedEqual) {
    				return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:57:01 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. src/reflect/badlinkname.go

    func badlinkname_rtype_Implements(*rtype, Type) bool
    
    //go:linkname badlinkname_rtype_In reflect.(*rtype).In
    func badlinkname_rtype_In(*rtype, int) Type
    
    //go:linkname badlinkname_rtype_IsVariadic reflect.(*rtype).IsVariadic
    func badlinkname_rtype_IsVariadic(*rtype) bool
    
    //go:linkname badlinkname_rtype_Key reflect.(*rtype).Key
    func badlinkname_rtype_Key(*rtype) Type
    
    //go:linkname badlinkname_rtype_Kind reflect.(*rtype).Kind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/importer_test.go

    Elem() Type; Field(i int) StructField; FieldAlign() int; FieldByIndex(index []int) StructField; FieldByName(name string) (StructField, bool); FieldByNameFunc(match func(string) bool) (StructField, bool); Implements(u Type) bool; In(i int) Type; IsVariadic() bool; Key() Type; Kind() Kind; Len() int; Method(int) Method; MethodByName(string) (Method, bool); Name() string; NumField() int; NumIn() int; NumMethod() int; NumOut() int; Out(i int) Type; PkgPath() string; Size() uintptr; String() string; common()...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
Back to top