BitXor: Difference between revisions
Jump to navigation
Jump to search
(Fixed version) |
m (change example) |
||
Line 1: | Line 1: | ||
{{Server client function}} | {{Server client function}} | ||
__NOTOC__ | __NOTOC__ | ||
{{New feature/item|3.0132|1.3.2|5340| | {{New feature/item|3.0132|1.3.2|5340| | ||
Line 18: | Line 17: | ||
==Example== | ==Example== | ||
{{Example}} | |||
==See Also== | ==See Also== | ||
{{Bit_functions}} | {{Bit_functions}} |
Revision as of 01:27, 13 September 2015
This function performs a bitwise XOR-conjunction (exclusive OR) on two or more (unsigned) 32-bit integers. See Bitwise operation for more details.
Syntax
uint bitXor ( uint var1, uint var2, ... )
Required arguments
- varN: The value you want to perform a XOR-conjunction on
Returns
Returns the conjuncted value.
Example
Script Example Missing Function BitXor needs a script example, help out by writing one. | |
Before submitting check out Editing Guidelines Script Examples. |
-- TODO