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> ''...")
 
Line 4: Line 4:
 
Returns the bitwise and of its argument.
 
Returns the bitwise and of its argument.
 
<source lang="lua">
 
<source lang="lua">
(number), = bit.band(x1x2,)
+
(number) = bit.band(x1,x2)
 
</source>
 
</source>
'''x1:''' (number) first number for and operation ''''''<br/>
+
'''x1''': (number) first number for and operation ''''''<br/>
'''x2:''' (number) second and more numbers can be provided for and operation '''optional'''<br/>
+
'''x2''': (number) second and more numbers can be provided for and operation '''optional'''<br/>
 
'''Returns''' (number) bitwise and<br/>
 
'''Returns''' (number) bitwise and<br/>

Revision as of 11:20, 23 August 2018

Available since: Gideros 2013.09

Description

Returns the bitwise and of its argument.

(number) = bit.band(x1,x2)

'x1: (number) first number for and operation '
x2: (number) second and more numbers can be provided for and operation optional
Returns (number) bitwise and