| 754 | } |
| 755 | |
| 756 | static inline std::string Int96ToString(const Int96& a) { |
| 757 | std::ostringstream result; |
| 758 | std::copy(a.value.begin(), a.value.end(), std::ostream_iterator<uint32_t>(result, " ")); |
| 759 | return result.str(); |
| 760 | } |
| 761 | |
| 762 | static inline std::string FixedLenByteArrayToString(const FixedLenByteArray& a, int len) { |
| 763 | std::ostringstream result; |
no test coverage detected