Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for genericArgs (0.11 sec)

  1. src/go/types/call.go

    				for len(targs) < len(tparams) {
    					targs = append(targs, nil)
    				}
    				genericArgs = append(genericArgs, i)
    			}
    		}
    	}
    	assert(len(tparams) == len(targs))
    
    	// at the moment we only support implicit instantiations of argument functions
    	_ = len(genericArgs) > 0 && check.verifyVersionf(args[genericArgs[0]], go1_21, "implicitly instantiated function as argument")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/call.go

    				for len(targs) < len(tparams) {
    					targs = append(targs, nil)
    				}
    				genericArgs = append(genericArgs, i)
    			}
    		}
    	}
    	assert(len(tparams) == len(targs))
    
    	// at the moment we only support implicit instantiations of argument functions
    	_ = len(genericArgs) > 0 && check.verifyVersionf(args[genericArgs[0]], go1_21, "implicitly instantiated function as argument")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top