| 101 | |
| 102 | protected: |
| 103 | std::string printNonNull(vector_size_t index, const std::string& indent) |
| 104 | const override { |
| 105 | std::stringstream out; |
| 106 | |
| 107 | out << indent << decoded_.base()->toString(decoded_.index(index)) |
| 108 | << std::endl; |
| 109 | return out.str(); |
| 110 | } |
| 111 | |
| 112 | std::string summarizeNonNull(vector_size_t index) const override { |
| 113 | auto* base = decoded_.base(); |