Returns true if the Path is relative, i.e., not absolute.
(&self)
| 353 | |
| 354 | /// Returns true if the Path is relative, i.e., not absolute. |
| 355 | pub fn is_relative(&self) -> bool { |
| 356 | !self.is_absolute() |
| 357 | } |
| 358 | |
| 359 | /// Produces an iterator over the [`Component`]s of the path. |
| 360 | /// |
no test coverage detected