* Is this value less than or equal other one? * @this {UUID} * @param {UUID} other Other value * @returns {boolean} Less than or equal result
(other)
| 252 | * @returns {boolean} Less than or equal result |
| 253 | */ |
| 254 | lte (other) { |
| 255 | return this.cmp(other) <= 0 |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Is this value greater than other one? |