toInt64 method
Same-width bit reinterpretation (two's complement) — e.g.
Uint64.max.toInt64() == Int64.minusOne.
Implementation
Int64 toInt64() {
return Int64.unsafe(this);
}
Same-width bit reinterpretation (two's complement) — e.g.
Uint64.max.toInt64() == Int64.minusOne.
Int64 toInt64() {
return Int64.unsafe(this);
}