| 768 | } |
| 769 | |
| 770 | static 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 | |
| 776 | template <Type::type TYPE> |
| 777 | struct type_traits {}; |