invoke

operator fun invoke(from: UByte, to: UByte): UByte(source)
@JvmName(name = "invokeByte")
operator fun invoke(from: Byte, to: Byte): UByte(source)

Invoke is a shortcut for:

val castByte = ([from] shl 4) or [to]

Get more information about the cast byte in the PCast Bytecode Specification

Since

0.1.0