Iterate over all file paths in the archive.
(&self)
| 139 | |
| 140 | /// Iterate over all file paths in the archive. |
| 141 | pub fn file_paths(&self) -> impl Iterator<Item = &str> { |
| 142 | self.files.keys().map(String::as_str) |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | // ─── Helpers ──────────────────────────────────────────────────────────────── |