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

Function Int96ToString

cpp/src/parquet/types.h:756–760  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

754}
755
756static inline std::string Int96ToString(const Int96& a) {
757 std::ostringstream result;
758 std::copy(a.value.begin(), a.value.end(), std::ostream_iterator<uint32_t>(result, " "));
759 return result.str();
760}
761
762static inline std::string FixedLenByteArrayToString(const FixedLenByteArray& a, int len) {
763 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