Difference between revisions of "Bit.Shr"

From OpenEUO
Jump to: navigation, search
(Created page with " Bit.Shr(n1,n2) Returns the result of shifting n1 to the right by n2 bits. Since numbers are stored in double format, don't use this as a shortcut for division by a power of two.")
 
 
Line 1: Line 1:
 
  Bit.Shr(n1,n2)
 
  Bit.Shr(n1,n2)
 
Returns the result of shifting n1 to the right by n2 bits.  Since numbers are stored in double format, don't use this as a shortcut for division by a power of two.
 
Returns the result of shifting n1 to the right by n2 bits.  Since numbers are stored in double format, don't use this as a shortcut for division by a power of two.
 +
 +
[[Bit.And]]
 +
 +
[[Bit.Not]]
 +
 +
[[Bit.Or]]
 +
 +
[[Bit.Shl]]
 +
 +
[[Bit.Xor]]

Latest revision as of 10:49, 9 October 2010

Bit.Shr(n1,n2)

Returns the result of shifting n1 to the right by n2 bits. Since numbers are stored in double format, don't use this as a shortcut for division by a power of two.

Bit.And

Bit.Not

Bit.Or

Bit.Shl

Bit.Xor