uint16 property

int uint16

Implementation

int get uint16 {
  return length > 1 ? ((this[0] & 0xFF) << 8) + (this[1] & 0xFF) : 0;
}