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

Function UArray_unquote

libs/basekit/source/UArray_string.c:446–454  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

444}
445
446void UArray_unquote(UArray *self) {
447 UArray q = UArray_stackAllocedWithCString_("\"");
448
449 if (UArray_beginsWith_(self, &q) && UArray_endsWith_(self, &q)) {
450 UArray_removeFirst(self);
451 UArray_removeLast(self);
452 UArray_changed(self);
453 }
454}
455
456void UArray_translate(UArray *self, UArray *fromChars, UArray *toChars) {
457 double max = 4096;

Callers 2

Calls 6

UArray_beginsWith_Function · 0.85
UArray_endsWith_Function · 0.85
UArray_removeFirstFunction · 0.85
UArray_removeLastFunction · 0.85
UArray_changedFunction · 0.85

Tested by

no test coverage detected