| 34 | }; |
| 35 | |
| 36 | SerializableMap(const Key &deletedKey, const Key emptyKey) { |
| 37 | map.set_deleted_key(deletedKey); |
| 38 | map.set_empty_key(emptyKey); |
| 39 | } |
| 40 | |
| 41 | bool unserialize(const std::string &path) { |
| 42 | std::fstream file{path, std::fstream::in | std::fstream::binary}; |
nothing calls this directly
no outgoing calls
no test coverage detected