pushUint16 method

void pushUint16(
  1. int v
)

Append a uint16 */

Implementation

void pushUint16(int v) {
  push([(v >> 0) & 0xff, (v >> 8) & 0xff]);
}