* Is this value greater than other one? * @this {!UInt64} * @param {!Int64|!UInt64|number|string} other Other value * @returns {boolean} Greater than result
(other)
| 1416 | * @returns {boolean} Greater than result |
| 1417 | */ |
| 1418 | gt (other) { |
| 1419 | return this.cmp(other) > 0 |
| 1420 | } |
| 1421 | |
| 1422 | /** |
| 1423 | * Is this value greater than or equal other one? |