unwrap_none 0.1.1

Implements the `unwrap_none` and `expect_none` methods removed by https://github.com/rust-lang/rust/pull/83349
Documentation

How to use

use unwrap_none::UnwrapNone;

fn main() {
	None.unwrap_none();
	None.expect_none("Value is not None");
}