and

infix fun Byte.and(other: Int): Byte

Binary AND operation on a Byte type.

Receiver

The first byte.

Return

The result of the AND operation.

Parameters

other

The second byte.


infix fun UByte.and(other: Int): UByte

Binary AND operation on a UByte type.

Receiver

The first unsigned byte.

Return

The result of the AND operation.

Parameters

other

The second byte.


infix fun Short.and(other: Int): Short

Binary AND operation on a Short type.

Receiver

The first short.

Return

The result of the AND operation.

Parameters

other

The second byte.


infix fun UShort.and(other: Int): UShort

Binary AND operation on a UShort type.

Receiver

The first unsigned short.

Return

The result of the AND operation.

Parameters

other

The second byte.