mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 22:28:45 +01:00
Deploy to GitHub Pages:
This commit is contained in:
@ -238,10 +238,10 @@ unsigned values. The result is then a 32-bit unsigned number where each bit is
|
||||
<h3><strong>^</strong>(other) operator <a href="#^(other)-operator" name="^(other)-operator" class="header-anchor">#</a></h3>
|
||||
<p>Performs bitwise exclusive or on the number. Both numbers are first converted to 32-bit unsigned values. The result is then a 32-bit unsigned number where each bit is <code>true</code> only where the corresponding bits of one (but not both) inputs were <code>true</code>. Each bit is therefore <code>false</code> if the corresponding bits of both inputs were either both <code>true</code> or both <code>false</code>.</p>
|
||||
<p>It is a runtime error if <code>other</code> is not a number.</p>
|
||||
<h3><strong><<</strong>(other) operator <a href="#<<(other)-operator" name="<<(other)-operator" class="header-anchor">#</a></h3>
|
||||
<h3><strong><<</strong>(other) operator <a href="#<<(other)-operator" name="<<(other)-operator" class="header-anchor">#</a></h3>
|
||||
<p>Performs a bitwise left shift on the number. Internally, both numbers are first converted to 32-bit unsigned values and C’s left shift operator is then applied to them.</p>
|
||||
<p>It is a runtime error if <code>other</code> is not a number.</p>
|
||||
<h3><strong>>></strong>(other) operator <a href="#>>(other)-operator” name=”>>(other)-operator” class=”header-anchor”>#</a></h3>
|
||||
<h3><strong>>></strong>(other) operator <a href="#>>(other)-operator" name=">>(other)-operator" class="header-anchor">#</a></h3>
|
||||
<p>Performs a bitwise right shift on the number. Internally, both numbers are first converted to 32-bit unsigned values and C’s right shift operator is then applied to them.</p>
|
||||
<p>It is a runtime error if <code>other</code> is not a number.</p>
|
||||
<h3><strong>..</strong>(other) operator <a href="#..(other)-operator" name="..(other)-operator" class="header-anchor">#</a></h3>
|
||||
|
||||
Reference in New Issue
Block a user