OttoVonNoob@lemmy.ca to Programmer Humor@programming.dev · 5 days agoYou seen the jank? I live in it.. molded by it...lemmy.caimagemessage-square15fedilinkarrow-up1187arrow-down113
arrow-up1174arrow-down1imageYou seen the jank? I live in it.. molded by it...lemmy.caOttoVonNoob@lemmy.ca to Programmer Humor@programming.dev · 5 days agomessage-square15fedilink
minus-squarePoolloverNathan@programming.devlinkfedilinkarrow-up7·5 days agoWhy not factor out the ! via de Morgan’s laws (which would also remove most of the parentheses, as iirc && binds tighter than ||)? Also, does that language have a {#continue} sort of syntax for loops? If so, you could make it a guard clause.
minus-squaresetVeryLoud(true);@lemmy.calinkfedilinkarrow-up4·5 days agoThank you, I knew the rule but did not know it had a name.
Why not factor out the
!
via de Morgan’s laws (which would also remove most of the parentheses, as iirc&&
binds tighter than||
)? Also, does that language have a{#continue}
sort of syntax for loops? If so, you could make it a guard clause.Thank you, I knew the rule but did not know it had a name.