MCPcopy Create free account
hub / github.com/numpy/numpy / string_is_fully_read

Function string_is_fully_read

numpy/core/src/multiarray/ctors.c:63–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61
62
63static npy_bool
64string_is_fully_read(char const* start, char const* end) {
65 if (end == NULL) {
66 return *start == '\0'; /* null terminated */
67 }
68 else {
69 return start >= end; /* fixed length */
70 }
71}
72
73
74static int

Callers 2

fromstr_next_elementFunction · 0.85
fromstr_skip_separatorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected