Difference between revisions of "Bit.tobit"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== <translate>Description</translate> ===
 
=== <translate>Description</translate> ===
 
<translate>Normalizes a number to the numeric range for bit operations and returns it. This function is usually not needed since all bit operations already normalize all of their input arguments.</translate>
 
<translate>Normalizes a number to the numeric range for bit operations and returns it. This function is usually not needed since all bit operations already normalize all of their input arguments.</translate>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number) = bit.tobit(x)
 
(number) = bit.tobit(x)
 
</source>
 
</source>

Revision as of 15:26, 13 July 2023


Available since: Gideros 2013.09
Class: bit

Description

Normalizes a number to the numeric range for bit operations and returns it. This function is usually not needed since all bit operations already normalize all of their input arguments. <syntaxhighlight lang="lua"> (number) = bit.tobit(x) </source>

Parameters

x: (number) number which range to normalize

Return values

Returns (number) normalized number