Difference between revisions of "Bit.bnot"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 5: | Line 5: | ||
=== <translate>Description</translate> === | === <translate>Description</translate> === | ||
<translate>Returns the bitwise not of its argument.</translate> | <translate>Returns the bitwise not of its argument.</translate> | ||
− | < | + | <syntaxhighlight lang="lua"> |
(number) = bit.bnot(x) | (number) = bit.bnot(x) | ||
</source> | </source> |
Revision as of 14:26, 13 July 2023
Available since: Gideros 2013.09
Class: bit
Description
Returns the bitwise not of its argument. <syntaxhighlight lang="lua"> (number) = bit.bnot(x) </source>
Parameters
x: (number) number to which to apply bitwise not
Return values
Returns (number) bitwise not