Best asked by an example:
my $var1=1;
my $var2;
my $var3=3;
# say "at least one undef" if at least one of $var1, $var2, $var3 is undef
Obviously I can explicitly loop and do that, but I always like to find one liners that achieve the same result.