Context and Array Interpolation
Learn how context affects arrays and how arrays interpolate in Perl.
We'll cover the following...
Arrays and context
In list context, arrays flatten into lists. If we pass multiple arrays to a normal function, they will flatten into a single list:
Press + to interact
my @cats = qw( Daisy Petunia Tuxedo Brad Jack Choco );my @dogs = qw( Rodney Lucky Rosie );take_pets_to_vet( @cats, @dogs );sub take_pets_to_vet {# BUGGY: do not use!my (@cats, @dogs) = @_;say "Cats =>"."@cats";say "Dogs =>"."@dogs";}
Within the function, @_
will contain nine elements, not two, because list ...