* Is this value less than or equal other one? * @this {!UInt64} * @param {!Int64|!UInt64|number|string} other Other value * @returns {boolean} Less than or equal result
(other)
| 1406 | * @returns {boolean} Less than or equal result |
| 1407 | */ |
| 1408 | lte (other) { |
| 1409 | return this.cmp(other) <= 0 |
| 1410 | } |
| 1411 | |
| 1412 | /** |
| 1413 | * Is this value greater than other one? |