BitXor: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Fixed version)
(Example added)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{Server client function}}
{{Server client function}}
{{Needs_Example}}
__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==
This example will do a bitwise XOR of x1, x2, ...
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
ToDo
local x1 = 0x14 -- binary: 0001 0100
local x2 = 0x1C -- binary: 0001 1100
 
bitXor(x1, x2)  -- return  0000 1000
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Bit_functions}}
{{Bit_functions}}

Latest revision as of 21:54, 8 January 2016

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

This example will do a bitwise XOR of x1, x2, ...

local x1 = 0x14 -- binary: 0001 0100
local x2 = 0x1C -- binary: 0001 1100

bitXor(x1, x2)  -- return  0000 1000

See Also