* Is this value less than other one? * @this {UUID} * @param {UUID} other Other value * @returns {boolean} Less than result
(other)
| 242 | * @returns {boolean} Less than result |
| 243 | */ |
| 244 | lt (other) { |
| 245 | return this.cmp(other) < 0 |
| 246 | } |
| 247 | |
| 248 | /** |
| 249 | * Is this value less than or equal other one? |