Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for LookupFieldOrMethod (0.78 sec)

  1. src/cmd/compile/internal/types2/unify.go

    		if xi != nil {
    			// All xi methods must exist in y and corresponding signatures must unify.
    			xmethods := xi.typeSet().methods
    			for _, xm := range xmethods {
    				obj, _, _ := LookupFieldOrMethod(y, false, xm.pkg, xm.name)
    				if ym, _ := obj.(*Func); ym == nil || !u.nify(xm.typ, ym.typ, exact, p) {
    					return false
    				}
    			}
    			return true
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"IsInterface", Func, 5},
    		{"IsNumeric", Const, 5},
    		{"IsOrdered", Const, 5},
    		{"IsString", Const, 5},
    		{"IsUnsigned", Const, 5},
    		{"IsUntyped", Const, 5},
    		{"Label", Type, 5},
    		{"LookupFieldOrMethod", Func, 5},
    		{"Map", Type, 5},
    		{"MethodExpr", Const, 5},
    		{"MethodSet", Type, 5},
    		{"MethodVal", Const, 5},
    		{"MissingMethod", Func, 5},
    		{"Named", Type, 5},
    		{"NewAlias", Func, 22},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top