toCUInt16 method

void toCUInt16(
  1. Array<Uint16> arr
)

Implementation

void toCUInt16(Array<Uint16> arr) {
  for (var e in indexed) {
    arr[e.$1] = e.$2 & 0xFF;
  }
}