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

Function FixedLenByteArrayToString

cpp/src/parquet/types.h:762–766  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

760}
761
762static inline std::string FixedLenByteArrayToString(const FixedLenByteArray& a, int len) {
763 std::ostringstream result;
764 std::copy(a.ptr, a.ptr + len, std::ostream_iterator<uint32_t>(result, " "));
765 return result.str();
766}
767
768template <Type::type TYPE>
769struct type_traits {};

Callers 2

FormatValueMethod · 0.85
AssertColumnIndexFunction · 0.85

Calls 1

strMethod · 0.80

Tested by 1

AssertColumnIndexFunction · 0.68