| 760 | } |
| 761 | |
| 762 | static 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 | |
| 768 | template <Type::type TYPE> |
| 769 | struct type_traits {}; |