* Is this value less than other one? * @this {!Int64} * @param {!Int64|!UInt64|number|string} other Other value * @returns {boolean} Less than result
(other)
| 482 | * @returns {boolean} Less than result |
| 483 | */ |
| 484 | lt (other) { |
| 485 | return this.cmp(other) < 0 |
| 486 | } |
| 487 | |
| 488 | /** |
| 489 | * Is this value less than or equal other one? |