getUint64 method
dynamic
getUint64()
Implementation
getUint64() {
var low, high;
if (this.littleEndian) {
low = this.getUint32();
high = this.getUint32();
} else {
high = this.getUint32();
low = this.getUint32();
}
return high * 0x100000000 + low;
}