| 540 | } |
| 541 | |
| 542 | uintptr_t UArray_evenHash(UArray *self) { |
| 543 | if (!self->evenHash) { |
| 544 | self->evenHash = UArray_calcEvenHash(self); |
| 545 | } |
| 546 | |
| 547 | return self->evenHash; |
| 548 | } |
| 549 | |
| 550 | int UArray_equalsWithHashCheck_(UArray *self, UArray *other) { |
| 551 | if (self == other) { |
no test coverage detected