Difference between revisions of "Bit.band"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2013.09<br/> === Description === Returns the bitwise and of its argument. <source lang="lua"> (number), = bit.band(x1x2,) </source> ''...") |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
(9 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''Available since:''' Gideros 2013.09<br/> | '''Available since:''' Gideros 2013.09<br/> | ||
+ | '''Class:''' [[bit]]<br/> | ||
+ | |||
=== Description === | === Description === | ||
Returns the bitwise and of its argument. | Returns the bitwise and of its argument. | ||
− | < | + | <syntaxhighlight lang="lua"> |
− | (number) | + | (number) = bit.band(x1,x2) |
− | </ | + | </syntaxhighlight> |
− | '''x1 | + | |
− | '''x2 | + | === Parameters === |
+ | '''x1''': (number) first number for and operation<br/> | ||
+ | '''x2''': (number) second and more numbers can be provided for and operation '''optional'''<br/> | ||
+ | |||
+ | === Return values === | ||
'''Returns''' (number) bitwise and<br/> | '''Returns''' (number) bitwise and<br/> | ||
+ | |||
+ | {{Bit}} |
Latest revision as of 14:26, 13 July 2023
Available since: Gideros 2013.09
Class: bit
Description
Returns the bitwise and of its argument.
(number) = bit.band(x1,x2)
Parameters
x1: (number) first number for and operation
x2: (number) second and more numbers can be provided for and operation optional
Return values
Returns (number) bitwise and