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

Function UArray_quote

libs/basekit/source/UArray_string.c:439–444  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

437}
438
439void UArray_quote(UArray *self) {
440 UArray q = UArray_stackAllocedWithCString_("\"");
441 UArray_prepend_(self, &q);
442 UArray_append_(self, &q);
443 UArray_changed(self);
444}
445
446void UArray_unquote(UArray *self) {
447 UArray q = UArray_stackAllocedWithCString_("\"");

Callers

nothing calls this directly

Calls 4

UArray_prepend_Function · 0.85
UArray_append_Function · 0.85
UArray_changedFunction · 0.85

Tested by

no test coverage detected