* Is this value less than other one? * @this {!UInt64} * @param {!Int64|!UInt64|number|string} other Other value * @returns {boolean} Less than result
(other)
| 1396 | * @returns {boolean} Less than result |
| 1397 | */ |
| 1398 | lt (other) { |
| 1399 | return this.cmp(other) < 0 |
| 1400 | } |
| 1401 | |
| 1402 | /** |
| 1403 | * Is this value less than or equal other one? |