* Is this value greater than other one? * @this {!Int64} * @param {!Int64|!UInt64|number|string} other Other value * @returns {boolean} Greater than result
(other)
| 502 | * @returns {boolean} Greater than result |
| 503 | */ |
| 504 | gt (other) { |
| 505 | return this.cmp(other) > 0 |
| 506 | } |
| 507 | |
| 508 | /** |
| 509 | * Is this value greater than or equal other one? |