Difference between revisions of "Bit.tobit"

From GiderosMobile
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2013.09<br/>
 
'''Available since:''' Gideros 2013.09<br/>
 +
'''Class:''' [[bit]]<br/>
 +
 
=== Description ===
 
=== 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.
 
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.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number) = bit.tobit(x)
 
(number) = bit.tobit(x)
</source>
+
</syntaxhighlight>
 +
 
 
=== Parameters ===
 
=== Parameters ===
'''x''': (number) number which range to normalize <br/>
+
'''x''': (number) number which range to normalize<br/>
 +
 
 
=== Return values ===
 
=== Return values ===
 
'''Returns''' (number) normalized number<br/>
 
'''Returns''' (number) normalized number<br/>
 +
 +
{{Bit}}

Latest revision as of 00:36, 8 June 2025

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.

(number) = bit.tobit(x)

Parameters

x: (number) number which range to normalize

Return values

Returns (number) normalized number