LeftShift - Math

From the Fallout4 CreationKit Wiki
Revision as of 20:49, 20 April 2017 by imported>Qazaaq (Category typo)
Jump to navigation Jump to search

F4SE Member of: Math Script

Shifts value left by n number of bits.

Syntax

int Function LeftShift(int value, int shiftBy) Global Native

Parameters

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

Return Value

The decimal result of the shift.

Examples

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

See Also