* Returns Int64 representing the 64 bit integer that comes by concatenating the given low and high 32 bits parts * @param {number} lowBits The low 32-bit part * @param {number} highBits The high 32-bit part * @returns {!Int64} The corresponding Int64 value
(lowBits, highBits)
| 57 | * @returns {!Int64} The corresponding Int64 value |
| 58 | */ |
| 59 | static fromBits (lowBits, highBits) { |
| 60 | return new Int64(lowBits, highBits) |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Returns Int64 from its bytes representation |