toInt64 method

Int64 toInt64()

Same-width bit reinterpretation (two's complement) — e.g. Uint64.max.toInt64() == Int64.minusOne.

Implementation

Int64 toInt64() {
  return Int64.unsafe(this);
}