Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

More typing for you, less typing for the poor souls who are actually calling your function. Swings and roundabouts.

Frankly, all the arguments based on catching odd numbers of arguments ring a bit hollow. The most likely case for this kind of bug is where someone carelessly writes

some_function(foo => $foo, bar => @bar);

in which case using an anonymous hashref will only catch the problem if @bar has an even number of elements. That's a pretty marginal gain.

If you actually want your function to be robust, you still have to validate the parameters, or you're asking for all kinds of interesting fun when @bar is three elements long and $bar[1] eq 'foo' (or any other valid parameter name). So you still have to do extra typing, and you still have to throw runtime errors. In this case, having the parameters as a flat list is actually helpful: it means you can detect and warn about duplicate keys, instead of having them silently swallowed by the conversion to a hash.

Or you could be lazy and not validate ... but if you're not worried about even-lengthed garbage inputs, why do you care about odd-lengthed garbage inputs?


In reply to Re^6: Preferred technique for named subroutine parameters? by Porculus
in thread Preferred technique for named subroutine parameters? by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-04-25 06:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found