| 239 | } |
| 240 | |
| 241 | uint8_t UArray_byteAt_(UArray *self, size_t i) { |
| 242 | if (i < UArray_sizeInBytes(self)) |
| 243 | return self->data[i]; |
| 244 | return 0; |
| 245 | } |
| 246 | |
| 247 | void UArray_setBit_at_(UArray *self, int aBool, size_t i) { |
| 248 | size_t bytePos = i / 8; |
nothing calls this directly
no test coverage detected