BitNot: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Server client function}} {{Needs_Example}} __NOTOC__ {{New feature/item|3.0140|1.4|5285| This function performs a bitwise NOT on an (unsigned) 32-bit integer. See [http...")
 
(Fixed version)
Line 2: Line 2:
{{Needs_Example}}
{{Needs_Example}}
__NOTOC__
__NOTOC__
{{New feature/item|3.0140|1.4|5285|
{{New feature/item|3.0132|1.3.2|5340|
This function performs a bitwise NOT on an (unsigned) 32-bit [[Int|integer]]. See [http://en.wikipedia.org/wiki/Bitwise_operation#NOT Bitwise operation] for more details.
This function performs a bitwise NOT on an (unsigned) 32-bit [[Int|integer]]. See [http://en.wikipedia.org/wiki/Bitwise_operation#NOT Bitwise operation] for more details.
}}
}}

Revision as of 12:07, 2 June 2013

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

Before submitting check out Editing Guidelines Script Examples.


This function performs a bitwise NOT on an (unsigned) 32-bit integer. See Bitwise operation for more details.

Syntax

uint bitNot ( uint var )

Required arguments

  • var: The value you want to perform a bitwise NOT on

Returns

Returns the value on which the operation has been performed.

Example

ToDo

See Also