MCPcopy Create free account
hub / github.com/apache/arrow / ParseUnsigned

Function ParseUnsigned

cpp/src/arrow/util/value_parsing.h:228–238  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

226 }
227
228inline bool ParseUnsigned(const char* s, size_t length, uint8_t* out) {
229 uint8_t result = 0;
230
231 do {
232 PARSE_UNSIGNED_ITERATION(uint8_t);
233 PARSE_UNSIGNED_ITERATION(uint8_t);
234 PARSE_UNSIGNED_ITERATION_LAST(uint8_t);
235 } while (false);
236 *out = result;
237 return true;
238}
239
240inline bool ParseUnsigned(const char* s, size_t length, uint16_t* out) {
241 uint16_t result = 0;

Callers 10

StringToTzinfoFunction · 0.85
ConvertMethod · 0.85
ConvertMethod · 0.85
ParseHHFunction · 0.85
ParseHH_MMFunction · 0.85
ParseHHMMFunction · 0.85
ParseHH_MM_SSFunction · 0.85
ParseSubSecondsFunction · 0.85
ParseYYYY_MM_DDFunction · 0.85

Calls

no outgoing calls

Tested by 1