I thought `unless` and postfix conditions (`return if blah`) in Perl/Ruby were kind of pointless when I first saw them, but honestly I'm kind of finding myself wishing more languages had them?
-
I thought `unless` and postfix conditions (`return if blah`) in Perl/Ruby were kind of pointless when I first saw them, but honestly I'm kind of finding myself wishing more languages had them?
I don't know that they should be broadly used outside of a few specific cases (where the LHS is something very short where you won't miss that there's a condition at the end), but e.g. `return unless condition` seems like a nicer way to write the very common `if (!condition) { return; }` form. (Early returns of this form are good and teaching students not to use them because they're supposedly confusing is actively harmful. I'm glad most people who were taught that seem to eventually realize otherwise.)
I also find myself wishing for something like `continue iff condition` as a synonym for `return unless condition`, but `continue` already means something else. (I kind of like `next` more as a keyword for "skip remainder of this loop iteration", but not much else outside of Perl uses it.)
Maybe `require condition` as an assert, and `require condition else return` as an early return?
... also I should learn Raku
-
G gustavinobevilacqua@mastodon.cisti.org shared this topic