Get paths of all collected files.
(&self)
| 276 | |
| 277 | /// Get paths of all collected files. |
| 278 | pub fn paths(&self) -> impl Iterator<Item = &str> |
| 279 | where |
| 280 | T: AsRef<str>, |
| 281 | { |
| 282 | self.files.iter().map(|f| f.as_ref()) |
| 283 | } |
| 284 | |
| 285 | /// Convert to a set of paths for efficient lookup. |
| 286 | pub fn path_set(&self) -> HashSet<&str> |
no test coverage detected