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

Function UArray_splitCount_

libs/basekit/source/UArray_string.c:286–291  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

284}
285
286size_t UArray_splitCount_(const UArray *self, const PtrUArray *delims) {
287 PtrUArray *r = UArray_split_(self, delims);
288 size_t count = UArray_size(r);
289 UArray_free(r);
290 return count;
291}
292
293// find
294

Callers

nothing calls this directly

Calls 3

UArray_split_Function · 0.85
UArray_sizeFunction · 0.85
UArray_freeFunction · 0.85

Tested by

no test coverage detected