mirror of
https://github.com/ahgamut/rust-ape-example.git
synced 2024-10-31 21:48:49 +00:00
61 lines
1.5 KiB
Rust
61 lines
1.5 KiB
Rust
|
// ./src/error/option_unwrap/and_then.md
|
||
|
|
||
|
|
||
|
#![allow(dead_code)]
|
||
|
|
||
|
#[derive(Debug)] enum Food { CordonBleu, Steak, Sushi }
|
||
|
#[derive(Debug)] enum Day { Monday, Tuesday, Wednesday }
|
||
|
|
||
|
// We don't have the ingredients to make Sushi.
|
||
|
fn have_ingredients(food: Food) -> Option<Food> {
|
||
|
match food {
|
||
|
Food::Sushi => None,
|
||
|
_ => Some(food),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// We have the recipe for everything except Cordon Bleu.
|
||
|
fn have_recipe(food: Food) -> Option<Food> {
|
||
|
match food {
|
||
|
Food::CordonBleu => None,
|
||
|
_ => Some(food),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// To make a dish, we need both the recipe and the ingredients.
|
||
|
// We can represent the logic with a chain of `match`es:
|
||
|
fn cookable_v1(food: Food) -> Option<Food> {
|
||
|
match have_recipe(food) {
|
||
|
None => None,
|
||
|
Some(food) => match have_ingredients(food) {
|
||
|
None => None,
|
||
|
Some(food) => Some(food),
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// This can conveniently be rewritten more compactly with `and_then()`:
|
||
|
fn cookable_v2(food: Food) -> Option<Food> {
|
||
|
have_recipe(food).and_then(have_ingredients)
|
||
|
}
|
||
|
|
||
|
fn eat(food: Food, day: Day) {
|
||
|
match cookable_v2(food) {
|
||
|
Some(food) => println!("Yay! On {:?} we get to eat {:?}.", day, food),
|
||
|
None => println!("Oh no. We don't get to eat on {:?}?", day),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn part0() {
|
||
|
let (cordon_bleu, steak, sushi) = (Food::CordonBleu, Food::Steak, Food::Sushi);
|
||
|
|
||
|
eat(cordon_bleu, Day::Monday);
|
||
|
eat(steak, Day::Tuesday);
|
||
|
eat(sushi, Day::Wednesday);
|
||
|
}
|
||
|
|
||
|
pub fn main() {
|
||
|
part0();
|
||
|
}
|
||
|
|