* Bitwise NOT this value * @this {!UInt64} * @returns {!UInt64} Bitwise NOT result value
()
| 1685 | * @returns {!UInt64} Bitwise NOT result value |
| 1686 | */ |
| 1687 | not () { |
| 1688 | return UInt64.fromBits(~this.low, ~this.high) |
| 1689 | } |
| 1690 | |
| 1691 | /** |
| 1692 | * Bitwise AND this value and other one |