Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IdenticalIgnoreTags (0.14 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)
Back to top