LeftShift - Math

Revision as of 04:01, 30 May 2013 by imported>Bot Owned (Added which direction to shiftby)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

SKSE Member of: Math Script

Shifts value left by n number of bits.

SyntaxEdit

int Function LeftShift(int value, int shiftBy) global native

ParametersEdit

  • value: The integer that you wish to shift.
  • shiftBy: How many bits to shift to the left.

Return ValueEdit

The decimal result of the shift.

ExamplesEdit

int iA = Math.LeftShift(52, 5) ;iA == 1664
int iC = Math.LeftShift(0x00070, 1) ;iC == 224

See AlsoEdit