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

Function Int96ToString

cpp/src/parquet/types.h:764–768  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

762}
763
764static inline std::string Int96ToString(const Int96& a) {
765 std::ostringstream result;
766 std::copy(a.value.begin(), a.value.end(), std::ostream_iterator<uint32_t>(result, " "));
767 return result.str();
768}
769
770static inline std::string FixedLenByteArrayToString(const FixedLenByteArray& a, int len) {
771 std::ostringstream result;

Callers 1

FormatValueMethod · 0.85

Calls 3

strMethod · 0.80
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected