* Is this value greater than or equal other one? * @this {UUID} * @param {UUID} other Other value * @returns {boolean} Greater than or equal result
(other)
| 272 | * @returns {boolean} Greater than or equal result |
| 273 | */ |
| 274 | gte (other) { |
| 275 | return this.cmp(other) >= 0 |
| 276 | } |
| 277 | |
| 278 | /** |
| 279 | * Compare this value to other one |