bit.tonumb

From ComputerCraft Wiki
Revision as of 01:53, 12 July 2013 by Watcher7 (Talk | contribs) (Changed nonexistent type int to type number.)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


This function has been deprecated.
This function has been removed from ComputerCraft in version 1.42.


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 number 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