unwrap-ord 0.1.3

Wrapper type to easily convert Ord to PartialOrd. inspired by std::cmp::Reverse
Documentation
# unwrap-ord

![Crates.io](https://img.shields.io/crates/v/unwrap-ord)

Wrapper type to easily convert Ord to PartialOrd. inspired by std::cmp::Reverse

# How to use 

Add your Cargo.toml

```toml
unwrap-ord = "0.1.0"
```

```rust
use unwrap_ord::UnwrapOrd;

fn main() {
    let v = [1.0, 3.0, 2.0];
    let mut v: Vec<_> = v.iter().copied().map(|x| UnwrapOrd(x)).collect();

    v.sort();

    println!("{:?}", v);  // [UncheckOrd(1.0), UncheckOrd(2.0), UncheckOrd(3.0)]
}
```