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??

Perl has fairly clear types like "scalar", "array", and "hash", so it could be useful for smart match to do different things when given an array or an array ref compared to when given a non-reference scalar. But even that case is not 100% clean (mostly due to overloading where you can have an object implemented as a reference to a hash that wants to behave like a scalar string or like a reference to a virtual array or such).

But you are very right when it comes to trying to distinguish between "number" and "string".

Smart match only looking at the "type" of one argument can improve the problem significantly. So I could see "when( 14 )" noticing that a literal number was given in the source code and so a numeric comparison should be used. But that clean line quickly becomes muddier in the face of code refactoring to things like "my $const = 14; ... when( $const )".

You either let that level of refactoring break smart match or you don't let smart match try to distinguish between strings and numbers (or else you doom smart match).

The only 100% clean case is having "when( @array )" behave differently than "when( $scalar )" (and similar).

- tye        


In reply to Re^2: Bring back the smartmatch operator (but with sane semantics this time)! (types of types) by tye
in thread Bring back the smartmatch operator (but with sane semantics this time)! by smls

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 browsing the Monastery: (5)
As of 2024-04-16 06:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found