|
|
|
|
|
by etra0
1323 days ago
|
|
Agree, I don't know if it's that useful for `Result<T>`, but for `Option<T>`, there has been a couple of times I've written if foo.is_none() {
return;
}
let foo = foo.unwrap()
Now I can do simply let Some(foo_unwrapped) = foo else {
return;
}
which is prettier than the `if let (...)` to just unwrap it IMO. |
|