Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsEmptyInterface (0.13 sec)

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

    				return CMPeq
    			}
    
    		case TINTER:
    			// Make sure named any type matches any empty interface.
    			if t == AnyType && x.IsEmptyInterface() || x == AnyType && t.IsEmptyInterface() {
    				return CMPeq
    			}
    		}
    	}
    
    	if c := t.Sym().cmpsym(x.Sym()); c != CMPeq {
    		return c
    	}
    
    	if x.obj != nil {
    		return CMPeq
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top