BitNot

From Multi Theft Auto: Wiki
Revision as of 12:07, 2 June 2013 by Jusonex (talk | contribs) (Fixed version)
Jump to navigation Jump to search

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