postfix_assert 0.1.0

Trait implementations of common assertions in (postfix) method style for the Rust standard library. This allows for assertions to be chained and integrated as part of an expression.
Documentation
1
2
3
4
0.1.0 (2021-04-03)
==================

The first release! In response to the removal of `unwrap_none` in <https://github.com/rust-lang/rust/pull/83349>, I've created this crate both for my personal use and to get experience testing/documenting a crate. This adds the `assert_none` and `assert_some` methods to `Option<T>` via the `PostfixAssertOption` trait.