How to expand hash into argument list in function call in Perl? I am searching Perl equivalent of Python's syntax : somefunc(**somedict) or somefunc(*somelist). Is that possible in Perl?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 2 down vote accepted

In Perl, all function arguments are passed as lists and stored in the special array variable @_. You can copy those values to some other array, or directly into a hash (as you can with any array/list).

If you are writing a function, you can pass the arguments directly into an array or hash:

sub hashFunc {
    my %args = @_;

    ....
}

sub arrayFunc {
    my @args = @_;

    ...
}

To call a function like that, just pass them as if they were a list or hash:

hashFunc(arg1 => 'someVal', arg2 => 'someOtherVal');
arrayFunc('someVal', 'someOtherVal');

If you already have the arguments in a variable, just pass them along and Perl flattens out the array/hash into the argument list:

hashFunc(%someHash);
arrayFunc(@someArray);
link|improve this answer
it's exactly the passing part where i would like to expand hash - to call someFunc(<MYSTERIOUS_OPERAND>%hash) which puts %hash into @_, not @_[0] – ts. Sep 26 '11 at 15:06
@ts: Yup, just added that – Adam Batkin Sep 26 '11 at 15:09
@ts.: you don't need that "mysterious operand", this is the default behaviour of Perl. – Blagovest Buyukliev Sep 26 '11 at 15:11
@ts., It's impossible to place %hash in $_[0], since array values can only be scalars. (You could place a reference to a hash in an array, but that's a story for another day.) – ikegami Sep 26 '11 at 19:04
Passing a hash by converting it to a list of arguments and then back to a hash inside the function is perfectly fine but not terribly efficient; passing a reference is more efficient. (That said it's also not what the OP asked for so I'm just adding a comment.) – ijw Sep 27 '11 at 10:44
feedback

Hashes do expand into a list when calling a function:

my %h = (a => 1, b => 2, c => 3);

sub foo {
  # prints the key-value pairs in unsorted order
  print "@_\n";
}

foo %h;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.