bit.blshift

From ComputerCraft Wiki
Revision as of 01:00, 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


Grid Redstone.png  Function bit.blshift
Shifts a number left by a specified number of bits
Syntax bit.blshift(number n, number bits)
Returns number the value of n shifted left by bits bits, which is equivalent to n×2bits
Part of ComputerCraft
API bit

Examples

Grid paper.png  Example
Shift the number 18 (10010) left by 2 bits, yielding 72 (1001000)
Code
print(bit.blshift(18, 2))
Output 72