Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^5: Global symbol requires explicit package name

by greengaroo (Hermit)
on Nov 28, 2012 at 18:34 UTC ( [id://1006088]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Global symbol requires explicit package name
in thread Global symbol requires explicit package name

Yes, but you can still use an ArrayRef, with the square brackets:

scalar_and_array_sub($foo, $bar, [@values[1..5]]); scalar_and_array_sub($foo, $bar, [$value1, $value2, $value3]); scalar_and_array_sub($foo, $bar, [split(/\s/, $string)]);
But I agree with you, if you don't pass too many arguments, you should use an Array instead of an ArrayRef.

Testing never proves the absence of faults, it only shows their presence.

Replies are listed 'Best First'.
Re^6: Global symbol requires explicit package name
by ColonelPanic (Friar) on Nov 29, 2012 at 06:28 UTC
    The first example doesn't provide equivalent functionality, however. When an array slice is passed normally, modifying @_ will modify the original array. But this makes an anonymous copy of the array slice, which is discarded after the function call.


    When's the last time you used duct tape on a duct? --Larry Wall

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1006088]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-23 21:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found