Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for genericExpr (0.17 sec)

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

    					// use the usual expression evaluators.
    					check.record(&x)
    				}
    			} else {
    				// x is exactly one value (possibly invalid or uninstantiated generic function).
    				check.genericExpr(&x, e)
    			}
    			resList[i] = &x
    		}
    	}
    
    	return
    }
    
    // arguments type-checks arguments passed to a function call with the given signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/go/types/call.go

    					// use the usual expression evaluators.
    					check.record(&x)
    				}
    			} else {
    				// x is exactly one value (possibly invalid or uninstantiated generic function).
    				check.genericExpr(&x, e)
    			}
    			resList[i] = &x
    		}
    	}
    
    	return
    }
    
    // arguments type-checks arguments passed to a function call with the given signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top