unpackInt64 method

int unpackInt64()

Implementation

int unpackInt64() {
  int uint64 = unpackUint64();
  return uint64 < (1 << 63) ? uint64 : uint64 - (1 << 64);
}