| 111 | void print(std::ostream &stream) { table_->print(stream); } |
| 112 | |
| 113 | std::string str() { |
| 114 | std::stringstream stream; |
| 115 | print(stream); |
| 116 | return stream.str(); |
| 117 | } |
| 118 | |
| 119 | size_t size() const { return table_->size(); } |
| 120 |
no outgoing calls
no test coverage detected