True, but the extra opcode (length) imposes a 30% hit.
Of course that diminishes if you're doing anything useful within the loop, but it is still significant for those situations where using such an obscure mechanism is worth considering.
Luckily, genomic data doesn't usually contain zeros or nulls.
I think it would be really nice if in the same way that in 5.12 you can use each on arrays, it would be nice to use it on scalars:
my $string = 'fred';
my( $i, $c );
say "$i:$c" while ($i,$c) = each $string;
0:f
1:r
2:e
3:d
say while $_ = each $string;
f
r
e
d
I think that could be made very efficient by aliasing a LvTARG to the characters in situ; and would be very useful.
IMO far more useful than the single character saving of each $arrayRef; over each @$arrayRef, which unfortunately probably means that it could not now be implemented :(
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
|