Difference between revisions of "Bit.tobit"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Available since:''' Gideros 2013.09<br/> | + | <languages /> |
− | === Description === | + | '''<translate>Available since</translate>:''' Gideros 2013.09<br/> |
+ | '''<translate>Class</translate>:''' [[Special:MyLanguage/bit|bit]]<br/> | ||
+ | === <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> | ||
− | < | + | <syntaxhighlight lang="lua"> |
(number) = bit.tobit(x) | (number) = bit.tobit(x) | ||
− | </ | + | </syntaxhighlight> |
− | === Parameters === | + | === <translate>Parameters</translate> === |
'''x''': (number) <translate>number which range to normalize</translate> <br/> | '''x''': (number) <translate>number which range to normalize</translate> <br/> | ||
− | === Return values === | + | === <translate>Return values</translate> === |
− | '''Returns''' (number) <translate>normalized number</translate><br/> | + | '''<translate>Returns</translate>''' (number) <translate>normalized number</translate><br/> |
+ | |||
+ | {{Bit}} |
Latest revision as of 14:27, 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.
(number) = bit.tobit(x)
Parameters
x: (number) number which range to normalize
Return values
Returns (number) normalized number