* Bitwise NOT this value * @this {!Int64} * @returns {!Int64} Bitwise NOT result value
()
| 793 | * @returns {!Int64} Bitwise NOT result value |
| 794 | */ |
| 795 | not () { |
| 796 | return Int64.fromBits(~this.low, ~this.high) |
| 797 | } |
| 798 | |
| 799 | /** |
| 800 | * Bitwise AND this value and other one |