* Converts the Int64 to a the nearest floating-point representation of this value (double, 53 bit mantissa) * @this {!Int64} * @returns {number} Result number
()
| 276 | * @returns {number} Result number |
| 277 | */ |
| 278 | toNumber () { |
| 279 | return this.high * INT64_TWO_PWR_32_DBL + (this.low >>> 0) |
| 280 | } |
| 281 | |
| 282 | /** |
| 283 | * Converts the Int64 to a string written in the specified radix |