I have a function that is called in an inner loop that takes several arguments; is it faster to access those arguments by something like
my ($arg1, $arg2, $arg3) = @_;
or the normal way like
my $arg1 = shift; my $arg2 = shift; my $arg3 = shift;
thanks for the help!
-Dan
In reply to Silly question about function args by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |