| 762 | } |
| 763 | |
| 764 | static inline std::string Int96ToString(const Int96& a) { |
| 765 | std::ostringstream result; |
| 766 | std::copy(a.value.begin(), a.value.end(), std::ostream_iterator<uint32_t>(result, " ")); |
| 767 | return result.str(); |
| 768 | } |
| 769 | |
| 770 | static inline std::string FixedLenByteArrayToString(const FixedLenByteArray& a, int len) { |
| 771 | std::ostringstream result; |
no test coverage detected