unpackInt32 method

int unpackInt32()

Implementation

int unpackInt32() {
  int uint32 = unpackUint32();
  return uint32 < (1 << 31) ? uint32 : uint32 - (1 << 32);
}