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; }