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

Function UArray_newWithVargs_

libs/basekit/source/UArray_format.c:21–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19}
20
21UArray *UArray_newWithVargs_(const char *format, va_list ap) {
22 UArray *self = UArray_new();
23 UArray_fromVargs_(self, format, ap);
24 return self;
25}
26
27UArray *UArray_fromFormat_(UArray *self, const char *format, ...) {
28 va_list ap;

Callers 5

UArray_newWithFormat_Function · 0.85
IoState_print_Function · 0.85
IoState_error_Function · 0.85

Calls 2

UArray_newFunction · 0.85
UArray_fromVargs_Function · 0.85

Tested by

no test coverage detected