Deploy to GitHub Pages:

This commit is contained in:
Travis CI
2021-03-02 19:42:55 +00:00
parent c7a9e19fc5
commit 51c5ae0aae

View File

@ -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>&lt;&lt;</strong>(other) operator <a href="#<<(other)-operator" name="<<(other)-operator" class="header-anchor">#</a></h3>
<h3><strong>&lt;&lt;</strong>(other) operator <a href="#&lt;&lt;(other)-operator" name="&lt;&lt;(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&rsquo;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>&gt;&gt;</strong>(other) operator <a href="#>&gt;(other)-operator&rdquo; name=&rdquo;&gt;&gt;(other)-operator&rdquo; class=&rdquo;header-anchor&rdquo;&gt;#</a></h3>
<h3><strong>&gt;&gt;</strong>(other) operator <a href="#&gt;&gt;(other)-operator" name="&gt;&gt;(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&rsquo;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>