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

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
It is possible to do this. However it would result in impossible to avoid warnings in the common case where someone is sorting a list which has a mix of numbers and strings. This would be annoying enough that you are unlikely to get general agreement on adding your warning. As well it would slow things down because you force cmp to study whether or not strings look like numbers, rather than just going ahead and comparing them.

By contrast the warning you are comparing it to will catch any time when Perl has to use a string as a number and doesn't think that it looks like a number. It shows up for any numerical operator, not just <=>. This warning is far more useful because if it shows up, you almost certainly are doing something wrong. And the performance penalty is negligable because the operation that you have to do to test for the error is an operation that you are already doing (namely test the string to see if it has any reasonable way of being interpreted as a number).

If you still want to argue for it, use the perlbug utility to send your suggestion to the core Perl developers. Do not be dismayed if they reject it.


In reply to Re: yet another sort issue by tilly
in thread yet another sort issue by mce

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 about the Monastery: (3)
As of 2024-04-25 14:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found