Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 31 of 31 for index (0.03 sec)

  1. src/go/types/unify.go

    // and corresponding type argument lists. The type argument list may be shorter
    // than the type parameter list, and it may contain nil types. Matching type
    // parameters and arguments must have the same index.
    func newUnifier(tparams []*TypeParam, targs []Type, enableInterfaceInference bool) *unifier {
    	assert(len(tparams) >= len(targs))
    	handles := make(map[*TypeParam]*Type, len(tparams))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top