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

Function UArray_unsupported_with_

libs/basekit/source/UArray.c:150–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148// error
149
150void UArray_unsupported_with_(const UArray *self, const char *methodName,
151 const UArray *other) {
152 // UArray_error_(self, "Error: '%s' not supported between '%s' and '%s'\n");
153 printf("Error: '%s' not supported between '%s' and '%s'\n", methodName,
154 CTYPE_name(self->itemType), CTYPE_name(other->itemType));
155 exit(-1);
156}
157
158void UArray_error_(const UArray *self, char *e) {
159 printf("%s\n", e);

Callers

nothing calls this directly

Calls 1

CTYPE_nameFunction · 0.85

Tested by

no test coverage detected