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

Function UArray_swapWith_

libs/basekit/source/UArray_string.c:325–331  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

323// escape and quote
324
325void UArray_swapWith_(UArray *self, UArray *other) {
326 UArray b;
327 memcpy(&b, other, sizeof(UArray));
328 memcpy(other, self, sizeof(UArray));
329 memcpy(self, &b, sizeof(UArray));
330 UArray_changed(self);
331}
332
333void UArray_escape(UArray *self) {
334 UArray *out = UArray_new();

Callers 4

UArray_escapeFunction · 0.85
UArray_convertToUTF8Function · 0.85
UArray_convertToUCS2Function · 0.85
UArray_convertToUCS4Function · 0.85

Calls 1

UArray_changedFunction · 0.85

Tested by

no test coverage detected