MCPcopy Create free account
hub / github.com/NVIDIA/DALI / SkipFieldName

Function SkipFieldName

dali/util/numpy.cc:66–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64
65template <size_t N>
66void SkipFieldName(const char*& ptr, const char (&name)[N]) {
67 SkipSpaces(ptr);
68 Skip(ptr, "'");
69 Skip(ptr, name);
70 Skip(ptr, "'");
71 SkipSpaces(ptr);
72 Skip(ptr, ":");
73 SkipSpaces(ptr);
74}
75
76template <typename T = int64_t>
77T ParseInteger(const char*& ptr) {

Callers 1

ParseHeaderContentsFunction · 0.85

Calls 2

SkipSpacesFunction · 0.70
SkipFunction · 0.70

Tested by

no test coverage detected