Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IdenticalIgnoreTags (0.31 sec)

  1. src/cmd/compile/internal/typecheck/subr.go

    	if types.IdenticalIgnoreTags(src.Underlying(), dst.Underlying()) {
    		return ir.OCONVNOP, ""
    	}
    
    	// 3. src and dst are unnamed pointer types and, ignoring struct tags,
    	// their base types have identical underlying types.
    	if src.IsPtr() && dst.IsPtr() && src.Sym() == nil && dst.Sym() == nil {
    		if types.IdenticalIgnoreTags(src.Elem().Underlying(), dst.Elem().Underlying()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. api/go1.8.txt

    pkg expvar, method (*Int) Value() int64
    pkg expvar, method (*String) Value() string
    pkg go/doc, func IsPredeclared(string) bool
    pkg go/types, func Default(Type) Type
    pkg go/types, func IdenticalIgnoreTags(Type, Type) bool
    pkg math/big, method (*Float) Scan(fmt.ScanState, int32) error
    pkg math/big, method (*Int) Sqrt(*Int) *Int
    pkg math/rand, func Uint64() uint64
    pkg math/rand, method (*Rand) Uint64() uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
Back to top