shl

infix fun Byte.shl(other: Byte): Byte(source)
infix fun Byte.shl(other: Short): Byte(source)
infix fun Byte.shl(other: Int): Byte(source)
infix fun Byte.shl(other: Long): Byte(source)
infix fun Byte.shl(other: UByte): Byte(source)
infix fun Byte.shl(other: UShort): Byte(source)
infix fun Byte.shl(other: UInt): Byte(source)
infix fun Byte.shl(other: ULong): Byte(source)

Shifts this value to the left by the other value

Return

The shifted value

Since

0.3.0

Parameters

other

The shift value


infix fun Short.shl(other: Byte): Short(source)
infix fun Short.shl(other: Short): Short(source)
infix fun Short.shl(other: Int): Short(source)
infix fun Short.shl(other: Long): Short(source)
infix fun Short.shl(other: UByte): Short(source)
infix fun Short.shl(other: UShort): Short(source)
infix fun Short.shl(other: UInt): Short(source)
infix fun Short.shl(other: ULong): Short(source)

Performs a shl operation on this value and other

Return

The result of the bitwise and operation

Since

0.3.0

Parameters

other

The other value


infix fun Int.shl(other: Byte): Int(source)
infix fun Int.shl(other: Short): Int(source)
infix fun Int.shl(other: Long): Int(source)
infix fun Int.shl(other: UByte): Int(source)
infix fun Int.shl(other: UShort): Int(source)
infix fun Int.shl(other: UInt): Int(source)
infix fun Int.shl(other: ULong): Int(source)
infix fun Long.shl(other: Byte): Long(source)
infix fun Long.shl(other: Short): Long(source)
infix fun Long.shl(other: Long): Long(source)
infix fun Long.shl(other: UByte): Long(source)
infix fun Long.shl(other: UShort): Long(source)
infix fun Long.shl(other: UInt): Long(source)
infix fun Long.shl(other: ULong): Long(source)
infix fun UByte.shl(other: Byte): UByte(source)
infix fun UByte.shl(other: Short): UByte(source)
infix fun UByte.shl(other: Int): UByte(source)
infix fun UByte.shl(other: Long): UByte(source)
infix fun UByte.shl(other: UByte): UByte(source)
infix fun UByte.shl(other: UShort): UByte(source)
infix fun UByte.shl(other: UInt): UByte(source)
infix fun UByte.shl(other: ULong): UByte(source)
infix fun UShort.shl(other: Byte): UShort(source)
infix fun UShort.shl(other: Short): UShort(source)
infix fun UShort.shl(other: Int): UShort(source)
infix fun UShort.shl(other: Long): UShort(source)
infix fun UShort.shl(other: UByte): UShort(source)
infix fun UShort.shl(other: UShort): UShort(source)
infix fun UShort.shl(other: UInt): UShort(source)
infix fun UShort.shl(other: ULong): UShort(source)
infix fun UInt.shl(other: Byte): UInt(source)
infix fun UInt.shl(other: Short): UInt(source)
infix fun UInt.shl(other: Long): UInt(source)
infix fun UInt.shl(other: UByte): UInt(source)
infix fun UInt.shl(other: UShort): UInt(source)
infix fun UInt.shl(other: UInt): UInt(source)
infix fun UInt.shl(other: ULong): UInt(source)
infix fun ULong.shl(other: Byte): ULong(source)
infix fun ULong.shl(other: Short): ULong(source)
infix fun ULong.shl(other: Long): ULong(source)
infix fun ULong.shl(other: UByte): ULong(source)
infix fun ULong.shl(other: UShort): ULong(source)
infix fun ULong.shl(other: UInt): ULong(source)
infix fun ULong.shl(other: ULong): ULong(source)

Performs a shl operation on this value and other

Return

The result of the bitwise shl operation

Since

0.3.0

Parameters

other

The other value