shl

infix fun Byte.shl(bitCount: Int): Byte
infix fun Int24.shl(bitCount: Int): Int24
infix fun Short.shl(bitCount: Int): Short
infix fun UByte.shl(bitCount: Int): UByte
infix fun UShort.shl(bitCount: Int): UShort

Shifts this value left by the bitCount number of bits.

Return

the shifted value.

Parameters

bitCount

the number of bits to shift by.


infix fun UInt24.shl(bitCount: Int): UInt24