| 68 | } |
| 69 | |
| 70 | std::string print(vector_size_t index, const std::string& indent) const { |
| 71 | if (decoded_.isNullAt(index)) { |
| 72 | std::ostringstream out; |
| 73 | out << indent << "<null>" << std::endl; |
| 74 | return out.str(); |
| 75 | } |
| 76 | |
| 77 | return printNonNull(index, indent); |
| 78 | } |
| 79 | |
| 80 | const DecodedVector& decoded() const { |
| 81 | return decoded_; |
no test coverage detected