| 210 | } |
| 211 | |
| 212 | void UArray_bitwiseNot(UArray *self) { |
| 213 | size_t i, max = UArray_sizeInBytes(self); |
| 214 | uint8_t *data = self->data; |
| 215 | for (i = 0; i < max; i++) { |
| 216 | data[i] = ~(data[i]); |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | // bitwise ops |
| 221 |
nothing calls this directly
no test coverage detected