* Is this value not equal to other one? * @this {!UInt64} * @param {!Int64|!UInt64|number|string} other Other value * @returns {boolean} Not equal result
(other)
| 1386 | * @returns {boolean} Not equal result |
| 1387 | */ |
| 1388 | ne (other) { |
| 1389 | return !this.eq(other) |
| 1390 | } |
| 1391 | |
| 1392 | /** |
| 1393 | * Is this value less than other one? |