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

Function JSONArrayInternal

cpp/src/arrow/json/from_string_test.cc:76–78  ·  view source on GitHub ↗

Special case for 8-bit ints (must output their decimal value, not the corresponding ASCII character)

Source from the content-addressed store, hash-verified

74// Special case for 8-bit ints (must output their decimal value, not the
75// corresponding ASCII character)
76void JSONArrayInternal(std::ostream* ss, int8_t value) {
77 *ss << static_cast<int16_t>(value);
78}
79
80void JSONArrayInternal(std::ostream* ss, uint8_t value) {
81 *ss << static_cast<int16_t>(value);

Callers 1

JSONArrayFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected