| 338 | void set(const std::string &key, std::string val) { map[key] = std::move(val); } |
| 339 | std::string get(const std::string &key) const { return map.at(key); } |
| 340 | size_t size() const { return map.size(); } |
| 341 | |
| 342 | private: |
| 343 | std::unordered_map<std::string, std::string> map; |