Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^2: Gratuitous use of Perl Prototypes

by leriksen (Curate)
on Nov 09, 2004 at 00:56 UTC ( [id://406244]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub PUSH {
      my ($aref, @new) = @_;
    ...
      carp "first parameter must be an array reference" unless ref $aref e
    +q 'ARRAY';
      ...
    }
    
  2. or download this
    sub NAMED_PUSH {
      my(%args) = @_;
    ...
      carp "dest_aref parmeter must be an array reference" unless ref $arg
    +s{dest_aref} eq 'ARRAY';
      ...
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (8)
As of 2024-04-18 15:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found