Difference between revisions of "Bit.Shl"

From OpenEUO
Jump to: navigation, search
 
Line 2: Line 2:
  
 
Returns the result of bitwise shifting n1 to the left n2 bits.  Since numbers are stored in double format (a floating point format), don't use this as a shortcut for multiplying by a power of two.
 
Returns the result of bitwise shifting n1 to the left n2 bits.  Since numbers are stored in double format (a floating point format), don't use this as a shortcut for multiplying by a power of two.
 +
 +
[[Bit.And]]
 +
 +
[[Bit.Not]]
 +
 +
[[Bit.Or]]
 +
 +
[[Bit.Shr]]
 +
 +
[[Bit.Xor]]

Latest revision as of 10:48, 9 October 2010

BitShl(n1,n2)

Returns the result of bitwise shifting n1 to the left n2 bits. Since numbers are stored in double format (a floating point format), don't use this as a shortcut for multiplying by a power of two.

Bit.And

Bit.Not

Bit.Or

Bit.Shr

Bit.Xor