Difference between revisions of "Bit.tonumb"

From ComputerCraft Wiki
Jump to: navigation, search
(Create page)
 
Line 14: Line 14:
 
}}
 
}}
 
}}
 
}}
 +
 +
As of ComputerCraft 1.42 the bit library has moved to Java code, and as such this function is no longer required or included.

Revision as of 09:59, 5 October 2012


Grid Redstone.png  Function bit.tonumb
Converts an array (numerically-indexed table) containing binary bit values to a number (the inverse of bit.tobits)
Syntax bit.tonumb(table bit_tbl)
Returns int the number resulting from the conversion of bit_tbl from binary
Part of ComputerCraft
API bit

Examples

Grid paper.png  Example
Convert the binary representation 10010 into its corresponding value, 18
Code
t = {}
t[1] = 0
t[2] = 1
t[3] = 0
t[4] = 0
t[5] = 1
print(bit.tonumb(t))
Output 18


As of ComputerCraft 1.42 the bit library has moved to Java code, and as such this function is no longer required or included.