Have you considered a testCondition()? Hmm
A: for(...){ next A if not my_truthiness( $_ ); print $a; }
A: for(...){ unless( my_truthiness( $_ ) ){ next A; } print $a; }
A: for(...){ my_truthiness( $_ ) or next A; print $a; }
A: for(...){ next A unless my_truthiness( $_ ); print $a; }
In reply to Re: Inverted logic
by Anonymous Monk
in thread Inverted logic
by BrowserUk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |