* Converts the Int64 to UInt64 * @this {!Int64} * @returns {!UInt64} Result UInt64 number
()
| 342 | * @returns {!UInt64} Result UInt64 number |
| 343 | */ |
| 344 | toUnsigned () { |
| 345 | return UInt64.fromBits(this.low, this.high) |
| 346 | } |
| 347 | |
| 348 | /** |
| 349 | * Get the high 32 bits as a signed integer |
no test coverage detected