ngn@lemy.lol to Programmer Humor@lemmy.mlEnglish · 9 months agogot himlemy.lolimagemessage-square129fedilinkarrow-up1222arrow-down122
arrow-up1200arrow-down1imagegot himlemy.lolngn@lemy.lol to Programmer Humor@lemmy.mlEnglish · 9 months agomessage-square129fedilink
minus-squareRustyNova@lemmy.worldlinkfedilinkarrow-up0·9 months agoOh, 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.
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.