* Is this value not equal to other one? * @this {UUID} * @param {UUID} other Other value * @returns {boolean} Not equal result
(other)
| 232 | * @returns {boolean} Not equal result |
| 233 | */ |
| 234 | ne (other) { |
| 235 | return !this.eq(other) |
| 236 | } |
| 237 | |
| 238 | /** |
| 239 | * Is this value less than other one? |