* Negates this value * @this {!Int64} * @returns {!Int64} Negated value
()
| 546 | * @returns {!Int64} Negated value |
| 547 | */ |
| 548 | neg () { |
| 549 | if (this.eq(INT64_MIN)) { |
| 550 | return INT64_MIN |
| 551 | } |
| 552 | return this.not().add(INT64_ONE) |
| 553 | } |
| 554 | |
| 555 | /** |
| 556 | * Add this value to other one |
no test coverage detected