Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Is there an isArray() in Perl?

by Molt (Chaplain)
on May 11, 2005 at 11:37 UTC ( #455955=note: print w/replies, xml ) Need Help??


in reply to Is there an isArray() in Perl?

If there's a chance of wanting to catch bless'ed arrays, or dealing with psychologically nasty code, such as my $item=bless {}, 'ARRAY', then it's best to be paranoid and check if you can actually treat the item as an array.

The following code snippet shows a function that does this kind of check:

for my $item (@array) { print "We've got an array" if is_array($item); } sub is_array { my ($ref) = @_; # Firstly arrays need to be references, throw # out non-references early. return 0 unless ref $ref; # Now try and eval a bit of code to treat the # reference as an array. If it complains # in the 'Not an ARRAY reference' then we're # sure it's not an array, otherwise it was. eval { my $a = @$ref; }; if ($@=~/^Not an ARRAY reference/) { return 0; } elsif ($@) { die "Unexpected error in eval: $@\n"; } else { return 1; } }

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2023-04-02 02:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?