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

Function UArray_show

libs/basekit/source/UArray.c:287–294  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

285}
286
287void UArray_show(const UArray *self) {
288 printf("UArray_%p %s\t", (void *)self, CTYPE_name(self->itemType));
289 printf("size: %i ", (int)self->size);
290 printf("itemSize: %i ", (int)self->itemSize);
291 printf("data: ");
292 UArray_print(self);
293 printf("\n");
294}
295
296void UArray_print(const UArray *self) {
297 if (self->encoding == CENCODING_ASCII || self->encoding == CENCODING_UTF8) {

Callers

nothing calls this directly

Calls 2

CTYPE_nameFunction · 0.85
UArray_printFunction · 0.85

Tested by

no test coverage detected