1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-21 14:46:37 +02:00

Simplify if-let example (#1977)

I find that `if let` makes the most sense to use when you don't have an
`else` case, otherwise it's generally clearer to express the same thing
with a `match`. This changes the `if let` example to be (arguably) a bit
more idiomatic and less verbose.
This commit is contained in:
Nicole L 2024-04-12 09:45:01 -07:00 committed by GitHub
parent d966750535
commit 04c28ed641
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,14 +18,13 @@ The
lets you execute different code depending on whether a value matches a pattern:
```rust,editable
use std::time::Duration;
fn sleep_for(secs: f32) {
let dur = if let Ok(dur) = std::time::Duration::try_from_secs_f32(secs) {
dur
} else {
std::time::Duration::from_millis(500)
};
std::thread::sleep(dur);
println!("slept for {:?}", dur);
if let Ok(dur) = Duration::try_from_secs_f32(secs) {
std::thread::sleep(dur);
println!("slept for {:?}", dur);
}
}
fn main() {