* Is this value less than or equal other one? * @this {!Int64} * @param {!Int64|!UInt64|number|string} other Other value * @returns {boolean} Less than or equal result
(other)
| 492 | * @returns {boolean} Less than or equal result |
| 493 | */ |
| 494 | lte (other) { |
| 495 | return this.cmp(other) <= 0 |
| 496 | } |
| 497 | |
| 498 | /** |
| 499 | * Is this value greater than other one? |