let_or_return 1.0.2

Convenient macro to extract a value via `if let`, and `return` in the else case
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# let_or_return

![maintenance-status](https://img.shields.io/badge/maintenance-deprecated-red.svg)
[![Crates.io](https://img.shields.io/crates/v/let_or_return?logo=rust)](https://crates.io/crates/let_or_return)
[![docs.rs](https://img.shields.io/docsrs/let_or_return?logo=docs.rs)](https://docs.rs/let_or_return)
[![CI](https://img.shields.io/github/actions/workflow/status/mic006/let_or_return/ci.yml?branch=main)](https://github.com/mic006/let_or_return)
[![Crates.io](https://img.shields.io/crates/l/let_or_return)](https://crates.io/crates/let_or_return)

⚠️ This crate is **deprecated**. Use the [`let-else`](https://doc.rust-lang.org/rust-by-example/flow_control/let_else.html) statement instead.

Convenient Rust macro to extract a value via `if let`, and `return` in the else case.

See [doc.rs documentation](https://docs.rs/let_or_return)