MCPcopy Create free account
hub / github.com/IoLanguage/io / UArray_bitwiseNot

Function UArray_bitwiseNot

libs/basekit/source/UArray_math.c:212–218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210}
211
212void 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

Callers

nothing calls this directly

Calls 1

UArray_sizeInBytesFunction · 0.85

Tested by

no test coverage detected