Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for leftmost (0.08 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    	{i: 41, as: ABRCTG, a1: C_REG, a6: C_SBRA},
    
    	// move on condition
    	{i: 17, as: AMOVDEQ, a1: C_REG, a6: C_REG},
    
    	// load on condition
    	{i: 25, as: ALOCGR, a1: C_SCON, a2: C_REG, a6: C_REG},
    
    	// find leftmost one
    	{i: 8, as: AFLOGR, a1: C_REG, a6: C_REG},
    
    	// population count
    	{i: 9, as: APOPCNT, a1: C_REG, a6: C_REG},
    
    	// compare
    	{i: 70, as: ACMP, a1: C_REG, a6: C_REG},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    chan<- float64  // can only be used to send float64s
    <-chan int      // can only be used to receive ints
    </pre>
    
    <p>
    The <code>&lt;-</code> operator associates with the leftmost <code>chan</code>
    possible:
    </p>
    
    <pre>
    chan&lt;- chan int    // same as chan&lt;- (chan int)
    chan&lt;- &lt;-chan int  // same as chan&lt;- (&lt;-chan int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top