| 33 | ValdiModuleArchive::~ValdiModuleArchive() = default; |
| 34 | |
| 35 | bool ValdiModuleArchive::containsEntry(const Valdi::StringBox& path) const { |
| 36 | return _entries.find(path) != _entries.end(); |
| 37 | } |
| 38 | |
| 39 | std::optional<ValdiModuleArchiveEntry> ValdiModuleArchive::getEntry(const Valdi::StringBox& path) const { |
| 40 | const auto& it = _entries.find(path); |
no test coverage detected