* Bitwise OR this value and other one * @this {!Int64} * @param {!Int64|!UInt64|number|string} other Other value * @returns {!Int64} Bitwise OR result value
(other)
| 816 | * @returns {!Int64} Bitwise OR result value |
| 817 | */ |
| 818 | or (other) { |
| 819 | if (!Int64.isInt64(other) && !UInt64.isUInt64(other)) { |
| 820 | other = Int64.fromValue(other) |
| 821 | } |
| 822 | return Int64.fromBits(this.low | other.low, this.high | other.high) |
| 823 | } |
| 824 | |
| 825 | /** |
| 826 | * Bitwise XOR this value and other one |