Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^2: Being more Assert-ive with Perl

by antirice (Priest)
on Sep 18, 2004 at 02:10 UTC ( [id://391931]=note: print w/replies, xml ) Need Help??


in reply to Re: Being more Assert-ive with Perl
in thread Being more Assert-ive with Perl

Perhaps instead of using ref you should check out Scalar::Util's reftype?

antirice    
The first rule of Perl club is - use Perl
The
ith rule of Perl club is - follow rule i - 1 for i > 1

Replies are listed 'Best First'.
Re^3: Being more Assert-ive with Perl
by ysth (Canon) on Sep 19, 2004 at 03:26 UTC
    The only real solution to this problem is to see if you can use something as the type of ref you want:
    sub hashref { eval { \%{$_[0]} } } sub myfunc { hashref($_[0]) or die "myfunc expected a hashref"; }
    reftype won't handle all cases (e.g. deref-overloading or perl4-style glob passing).

Log In?
Username:
Password:

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

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

    No recent polls found