Difference between revisions of "Bit.bor"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 7: Line 7:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
(number) = bit.bor(x1,x2)
 
(number) = bit.bor(x1,x2)
</source>
+
</syntaxhighlight>
 
=== <translate>Parameters</translate> ===
 
=== <translate>Parameters</translate> ===
 
'''x1''': (number) <translate>first number for or operation</translate> <br/>
 
'''x1''': (number) <translate>first number for or operation</translate> <br/>

Latest revision as of 15:27, 13 July 2023


Available since: Gideros 2013.09
Class: bit

Description

Returns the bitwise or of its argument.

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

Parameters

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

Return values

Returns (number) bitwise or