getUint64 method

dynamic getUint64()

Implementation

getUint64() {
  var low, high;

  if (littleEndian) {
    low = getUint32();
    high = getUint32();
  } else {
    high = getUint32();
    low = getUint32();
  }

  return high * 0x100000000 + low;
}