or

Performs a bitwise OR operation between the two values.

infix inline fun Byte.or(other: Byte): Byte(source)
val a: Byte = 0b0101_0101
val b: Byte = 0b0011_1000
val result: Byte = a or b
println("Result: $result")

Source