* Is this value greater than or equal other one? * @this {!UInt64} * @param {!Int64|!UInt64|number|string} other Other value * @returns {boolean} Greater than or equal result
(other)
| 1426 | * @returns {boolean} Greater than or equal result |
| 1427 | */ |
| 1428 | gte (other) { |
| 1429 | return this.cmp(other) >= 0 |
| 1430 | } |
| 1431 | |
| 1432 | /** |
| 1433 | * Compare this value to other one |