pushUint32 method
Append a uint32
*/
Implementation
void pushUint32(int v) {
var t = [(v >> 0) & 0xff, (v >> 8) & 0xff, (v >> 16) & 0xff, (v >> 24) & 0xff];
push(t);
}
Append a uint32
*/
void pushUint32(int v) {
var t = [(v >> 0) & 0xff, (v >> 8) & 0xff, (v >> 16) & 0xff, (v >> 24) & 0xff];
push(t);
}