* Is this value not equal to other one? * @this {!Int64} * @param {!Int64|!UInt64|number|string} other Other value * @returns {boolean} Not equal result
(other)
| 472 | * @returns {boolean} Not equal result |
| 473 | */ |
| 474 | ne (other) { |
| 475 | return !this.eq(other) |
| 476 | } |
| 477 | |
| 478 | /** |
| 479 | * Is this value less than other one? |