Shift Left Operator (<<)
The shift left operator moves the bits of its first operand to the left by the number of bits specified by the second operand. The lower order bits that are vacated are filled with zeroes.
Example
INT a := 0b111; INT b; b := a << 5; // b is 0b11100000
See Also
XJTAG v4.2.5
