In my code, I'm been using the fairly primitive method of extraction parameters from a function call as follows:
sub addSix ($$$$$$) {
my ($a, $b, $c, $d, $e, $f) = (shift, shift, shift, shift, shift, shift);
return $a + $b + $c + $d + $e + $f;
}
print addSix (1, 2, 3, 4, 5, 6) . "\n";
(forget the primitive code, the salient bit is the multiple shift calls).
Now that seems rather messy to me and I though Perl may have something like:
my ($a, $b, $c, $d, $e, $f) = shift (6);
or something similar.
But I cannot find anything like that. I know I can use arrays for this but I think I'd still have to unpack the array into individual scalars. That wouldn't be too bad for the example case above, where the six parameters are similar, but I'm mor interested in the case where they're not really suitable as an array.
How can you extract parameters without ending up with a morass of shift keywords?
$aand$bas variable names as they are intended to be used insidesortblocks only. – Zaid Jan 12 at 7:43my %params = @_;and call it asmysub foo => 1, bar => 2, baz => 3, ...– Eric Strom Jan 12 at 16:37