readUInt16LE function

int readUInt16LE(
  1. List<int> b,
  2. int idx
)

Implementation

int readUInt16LE(List<int> b, int idx) {
  return b[idx + 1] * (1 << 8) + b[idx];
}