this post was submitted on 09 May 2024
458 points (92.4% liked)

Programmer Humor

32068 readers
377 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 4 months ago (1 children)

what if I need to nest if lets

[–] [email protected] 4 points 4 months ago (1 children)

Use a match? Unless it's for guard clauses, a match is fine enough

[–] [email protected] 1 points 4 months ago (1 children)

what if i need to if let on the result of another if let

[–] [email protected] 1 points 4 months ago (1 children)

Oh, then you use and_then() or something similar.

There's also the possibility to use the guard clauses patern and do let <...> = <...> else {}.

And finally, you can always split into another function.

It's not straight rules. It depends on what makes it more readable for your case.

[–] [email protected] 1 points 4 months ago

what about if on a boolean followed by an if let