kotlin experimental unsigned types can’t be shifte...
# announcements
t
kotlin experimental unsigned types can’t be shifted? (at least, not UShort?)
r
It's an artifact of the JVM. All bitwise operations are converted to
Int
implicitly, so the Kotlin team has made this explicit until they decide how they want to go about it.
t
thanks
👍 1