Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Arithmetic_operators (0.28 sec)

  1. doc/go1.17_spec.html

    </p>
    
    <pre>
    +x
    23 + 3*x[i]
    x &lt;= f()
    ^a &gt;&gt; b
    f() || g()
    x == y+1 &amp;&amp; &lt;-chanInt &gt; 0
    </pre>
    
    
    <h3 id="Arithmetic_operators">Arithmetic operators</h3>
    <p>
    Arithmetic operators apply to numeric values and yield a result of the same
    type as the first operand. The four standard arithmetic operators (<code>+</code>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    ^a &gt;&gt; b                    // (^a) >> b
    f() || g()                 // f() || g()
    x == y+1 &amp;&amp; &lt;-chanInt &gt; 0  // (x == (y+1)) && ((<-chanInt) > 0)
    </pre>
    
    
    <h3 id="Arithmetic_operators">Arithmetic operators</h3>
    <p>
    Arithmetic operators apply to numeric values and yield a result of the same
    type as the first operand. The four standard arithmetic operators (<code>+</code>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top