Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: elegant array assignment

by snoopy (Curate)
on Feb 16, 2008 at 00:08 UTC ( [id://668282]=note: print w/replies, xml ) Need Help??


in reply to elegant array assignment

If an object has been blessed, Perls ref built in will return the class, not its type. Thus this code might not do what you expect for blessed array references.

Scalar::Util's reftype function consistantly returns the type and might be a better choice here:

use Scalar::Util qw/reftype/; my @arr = reftype( $x ) eq 'ARRAY' ? @$x : ( $x );

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (6)
As of 2024-04-19 10:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found