```/* Converts a short to an unsigned integer. Not...
# announcements
g
Copy code
/* Converts a short to an unsigned integer. Note that Java 8 now has this function natively */
internal fun Short.toUInt(): Int {
    return this.toInt() and 0xffff
}