* Converts the Int64 to a 32-bit integer, assuming it is a 32-bit integer * @this {!Int64} * @returns {number} Result 32-bit integer
()
| 267 | * @returns {number} Result 32-bit integer |
| 268 | */ |
| 269 | toInt32 () { |
| 270 | return this.low |
| 271 | } |
| 272 | |
| 273 | /** |
| 274 | * Converts the Int64 to a the nearest floating-point representation of this value (double, 53 bit mantissa) |