My use case: ```fun ByteArray.readUInt16( readOffs...
# getting-started
d
My use case:
Copy code
fun ByteArray.readUInt16( readOffset: Ref.IntRef ) : Int {
    val lsb = this[ readOffset.element++ ]
    val msb = this[ readOffset.element++ ]
    return UInt16Bytes( lsb, msb ).toInt()
}