BitXorInteger (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Created page with "{{Template:Float:BitXorInteger subtitle}} The <var>BitXorInteger</var> intrinsic function performs a logical XOR on the bits of two integers. ==Syntax== {...")
 
mNo edit summary
 
Line 8: Line 8:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%result</th><td>A variable to receive the result of XORing together the bits of <var class="term">float</var> and <var class="term">xorBits</var>.</td></tr>
<tr><th>%result</th><td>A variable to receive the result of XORing together the bits of <var class="term">float</var> and <var class="term">xorBits</var>.</td></tr>
<tr><th>float</th><td>One of the floats to be XORed.</td></tr>
<tr><th>float</th><td>One of the integers to be XORed.</td></tr>
 
<tr><th>xorBits</th><td>The other float to be XORed.</td></tr>


<tr><th>xorBits</th><td>The other integer to be XORed.</td></tr>
</table>
</table>


==Usage notes==
==Usage notes==
<ul><li>The <var>BitXorInteger</var> function is available as of <var class="product">[[Sirius Mods]]</var> Version 7.9</ul>
<ul>
 
<li>The <var>BitXorInteger</var> function is available as of <var class="product">Sirius Mods</var> Version 7.9.
==Examples==
</ul>


==See also==
==See also==
{{Template:Float:BitXorInteger footer}}
{{Template:Float:BitXorInteger footer}}

Latest revision as of 17:33, 2 November 2012

Do bitwise exclusive Or of integers (Float class)

[Introduced in Sirius Mods 7.9]


The BitXorInteger intrinsic function performs a logical XOR on the bits of two integers.

Syntax

%number = float:BitXorInteger( xorBits)

Syntax terms

%resultA variable to receive the result of XORing together the bits of float and xorBits.
floatOne of the integers to be XORed.
xorBitsThe other integer to be XORed.

Usage notes

  • The BitXorInteger function is available as of Sirius Mods Version 7.9.

See also