Difference between revisions of "Bit.tonumb"
From ComputerCraft Wiki
m (Use type template) |
(Now perhaps jesusthekiller won't submit false bugreports.) |
||
Line 1: | Line 1: | ||
{{lowercase}} | {{lowercase}} | ||
+ | |||
+ | {{Deprecated | ||
+ | |type=This function | ||
+ | |version=1.42 | ||
+ | }} | ||
+ | |||
{{Function | {{Function | ||
|name=bit.tonumb | |name=bit.tonumb | ||
Line 14: | Line 20: | ||
}} | }} | ||
}} | }} | ||
− | |||
− | |||
[[Category:API_Functions]] | [[Category:API_Functions]] |
Revision as of 18:37, 1 June 2013
This function has been deprecated. This function has been removed from ComputerCraft in version 1.42.
|
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
Example | |
Convert the binary representation 10010 into its corresponding value, 18 | |
Code |
t = {} |
Output | 18 |