- or download this
A: for(...){
next A if not my_truthiness( $_ );
print $a;
}
- or download this
A: for(...){
unless( my_truthiness( $_ ) ){
...
}
print $a;
}
- or download this
A: for(...){
my_truthiness( $_ ) or next A;
print $a;
}
- or download this
A: for(...){
next A unless my_truthiness( $_ );
print $a;
}