The reason shl didn’t previously exist for bytes i...
# android
d
The reason shl didn’t previously exist for bytes is because there’s no JVM operation for bit rotation on bytes. So they chose to omit it because Kotlin doesn’t do implicit casting (which is what happens in Java when you do someByte << 1).
👍🏽 1