Shl(): Difference between revisions

From TinyMUX
Jump to navigation Jump to search
Ian (talk | contribs)
No edit summary
 
(No difference)

Latest revision as of 05:09, 17 January 2006

Description

FUNCTION: shl(number,count)

Performs a leftwards bit-shift on number, shifting it <count> times. This is equivalent to imul(number,pow(2,count), but much faster.

Related Topics: shr(), band(), bnand(), bor(), bxor().

Examples

> think shl(2,10)
2048


(--Soylent 00:37, 3 December 2005 (EST))