Difference between revisions of "Bit.blshift"
From ComputerCraft Wiki
m (Moved to CAT:APIFunctions) |
m (Int linking fix.) |
||
| Line 4: | Line 4: | ||
|args=[[int (type)|int]] n, [[int (type)|int]] bits | |args=[[int (type)|int]] n, [[int (type)|int]] bits | ||
|api=bit | |api=bit | ||
| − | |returns=[[int]] the value of <var>n</var> shifted left by <var>bits</var> bits, which is equivalent to <var>n</var>×2<sup><var>bits</var></sup> | + | |returns=[[int (type)|int]] the value of <var>n</var> shifted left by <var>bits</var> bits, which is equivalent to <var>n</var>×2<sup><var>bits</var></sup> |
|addon=ComputerCraft | |addon=ComputerCraft | ||
|desc=Shifts a number left by a specified number of bits | |desc=Shifts a number left by a specified number of bits | ||
Revision as of 18:35, 30 November 2012
| Shifts a number left by a specified number of bits | |
| Syntax | bit.blshift(int n, int bits) |
| Returns | int the value of n shifted left by bits bits, which is equivalent to n×2bits |
| Part of | ComputerCraft |
| API | bit |
Examples
| Shift the number 18 (10010) left by 2 bits, yielding 72 (1001000) | |
| Code |
print(bit.blshift(18, 2)) |
| Output | 72 |