So last example should be:
for my $i (@list) { next if not $i % 2 == 0; do_something(); }
unless ($this) { ... } next unless $this;
So last example should be:
Personally I don't follow the bible to the letter :) I do use prefix & postfix unless but only with simple truth conditions like this: