Difference between revisions of "Bit.bnot"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2013.09<br/> === Description === Returns the bitwise not of its argument. <source lang="lua"> (number), = bit.bnot(x,) </source> '''x:...")
 
Line 4: Line 4:
 
Returns the bitwise not of its argument.
 
Returns the bitwise not of its argument.
 
<source lang="lua">
 
<source lang="lua">
(number), = bit.bnot(x,)
+
(number) = bit.bnot(x)
 
</source>
 
</source>
'''x:''' (number) number to which to apply bitwise not ''''''<br/>
+
'''x''': (number) number to which to apply bitwise not ''''''<br/>
 
'''Returns''' (number) bitwise not<br/>
 
'''Returns''' (number) bitwise not<br/>

Revision as of 11:19, 23 August 2018

Available since: Gideros 2013.09

Description

Returns the bitwise not of its argument.

(number) = bit.bnot(x)

'x: (number) number to which to apply bitwise not '
Returns (number) bitwise not