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:...") |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
(8 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Available since:''' Gideros 2013.09<br/> | + | <languages /> |
− | === Description === | + | '''<translate>Available since</translate>:''' Gideros 2013.09<br/> |
− | Returns the bitwise not of its argument. | + | '''<translate>Class</translate>:''' [[Special:MyLanguage/bit|bit]]<br/> |
− | < | + | === <translate>Description</translate> === |
− | (number) | + | <translate>Returns the bitwise not of its argument.</translate> |
− | </ | + | <syntaxhighlight lang="lua"> |
− | '''x | + | (number) = bit.bnot(x) |
− | '''Returns''' (number) bitwise not<br/> | + | </syntaxhighlight> |
+ | === <translate>Parameters</translate> === | ||
+ | '''x''': (number) <translate>number to which to apply bitwise not</translate> <br/> | ||
+ | === <translate>Return values</translate> === | ||
+ | '''<translate>Returns</translate>''' (number) <translate>bitwise not</translate><br/> | ||
+ | |||
+ | {{Bit}} |
Latest revision as of 14:26, 13 July 2023
Available since: Gideros 2013.09
Class: bit
Description
Returns the bitwise not of its argument.
(number) = bit.bnot(x)
Parameters
x: (number) number to which to apply bitwise not
Return values
Returns (number) bitwise not