pushUint32 method

void pushUint32(
  1. int v
)

Append a uint32 */

Implementation

void pushUint32(int v) {
  var t = [(v >> 0) & 0xff, (v >> 8) & 0xff, (v >> 16) & 0xff, (v >> 24) & 0xff];
  push(t);
}