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

Function UArray_clone

libs/basekit/source/UArray.c:281–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279}
280
281UArray *UArray_clone(const UArray *self) {
282 UArray *out = UArray_new();
283 UArray_copy_(out, self);
284 return out;
285}
286
287void UArray_show(const UArray *self) {
288 printf("UArray_%p %s\t", (void *)self, CTYPE_name(self->itemType));

Callers 15

UArray_normalizeFunction · 0.85
UArray_asOSPathFunction · 0.85
UArray_asUnixPathFunction · 0.85
UArray_rangeFunction · 0.85
UArray_sliceFunction · 0.85
UArray_insert_every_Function · 0.85
IoDirectory_justFullPathFunction · 0.85
IoSeq_immutable.cFile · 0.85
IoDate_fromSerializationFunction · 0.85
IoSeq_rawCloneFunction · 0.85

Calls 2

UArray_newFunction · 0.85
UArray_copy_Function · 0.85

Tested by

no test coverage detected