BitXor

From Multi Theft Auto: Wiki
Revision as of 16:13, 24 April 2013 by Jusonex (talk | contribs) (Created page with "{{Server client function}} {{Needs_Example}} __NOTOC__ {{New feature/item|3.0140|1.4|5285| This function performs a bitwise XOR-conjunction (exclusive OR) on two or more (unsigne...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Accessories-text-editor.png Script Example Missing Function BitXor needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.


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

ToDo

See Also