Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for rv1 (0.02 sec)

  1. src/cmd/compile/internal/rangefunc/rewrite.go

    names if they don't have them already, and the names are assigned
    at the return site.
    
    	  func foo() (#rv1 A, #rv2 B) {
    
    		{
    			var (
    				#next int
    			)
    			f(func(x T1) bool {
    				...
    				{
    					// return a, b
    					#rv1, #rv2 = a, b
    					#next = -1
    					return false
    				}
    				...
    				return true
    			})
    			if #next == -1 { return }
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top