* Is this value greater than other one? * @this {UUID} * @param {UUID} other Other value * @returns {boolean} Greater than result
(other)
| 262 | * @returns {boolean} Greater than result |
| 263 | */ |
| 264 | gt (other) { |
| 265 | return this.cmp(other) > 0 |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * Is this value greater than or equal other one? |