Difference between revisions of "Bit.lshift"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== <translate>Description</translate> ===
 
=== <translate>Description</translate> ===
 
<translate>Returns the bitwise logical left-shift by the number of bits given by the second argument.</translate>
 
<translate>Returns the bitwise logical left-shift by the number of bits given by the second argument.</translate>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number) = bit.lshift(x,n)
 
(number) = bit.lshift(x,n)
 
</source>
 
</source>

Revision as of 15:26, 13 July 2023


Available since: Gideros 2013.09
Class: bit

Description

Returns the bitwise logical left-shift by the number of bits given by the second argument. <syntaxhighlight lang="lua"> (number) = bit.lshift(x,n) </source>

Parameters

x: (number) number to shift
n: (number) amount of bits to shift

Return values

Returns (number) bitwise logical left-shift