Subject: | Change prototype of is_unknown from ($) to (_) |
This would allow:
my @numbers = (1, 2, 3, unknown, 5);
for (@numbers) {
next if is_unknown;
say;
}
The (_) prototype is the same as lc, uc, length, etc - it allows the
function to operate on $_ by default, even lexical $_.