Difference between revisions of "Bit.band"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Returns the bitwise and of its argument.
 
Returns the bitwise and of its argument.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number) = bit.band(x1,x2)
 
(number) = bit.band(x1,x2)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===

Latest revision as of 15: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