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

Function FixedLenByteArrayToString

cpp/src/parquet/types.h:770–774  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

768}
769
770static inline std::string FixedLenByteArrayToString(const FixedLenByteArray& a, int len) {
771 std::ostringstream result;
772 std::copy(a.ptr, a.ptr + len, std::ostream_iterator<uint32_t>(result, " "));
773 return result.str();
774}
775
776template <Type::type TYPE>
777struct type_traits {};

Callers 2

FormatValueMethod · 0.85
AssertColumnIndexFunction · 0.85

Calls 1

strMethod · 0.80

Tested by 1

AssertColumnIndexFunction · 0.68