Uniform access to the path strings inside a PSR-4 value, regardless of whether it came from `autoload` or `autoload-dev`.
| 327 | /// Uniform access to the path strings inside a PSR-4 value, regardless |
| 328 | /// of whether it came from `autoload` or `autoload-dev`. |
| 329 | trait Psr4Paths { |
| 330 | /// Call `f` for each directory path in this value. |
| 331 | fn for_each_path(&self, f: impl FnMut(&str)); |
| 332 | } |
| 333 | |
| 334 | macro_rules! impl_psr4_paths { |
| 335 | ($ty:ty) => { |
nothing calls this directly
no outgoing calls
no test coverage detected