pathext 0.2.0

A small path trait extension with some convenience methods.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# PathExt

A small collection of utilities on Paths and PathBufs.

## Simple usage

```rust
use pathext::PathExt;
assert!("/some/path".has_component("path"));
assert!("multiple-extensions.tar.gz".strip_extensions(), Some("multiple-extensions"));
```