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

Re^4: Numification of strings

by LanX (Saint)
on Aug 02, 2010 at 12:52 UTC ( [id://852467]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Numification of strings
in thread Numification of strings

> > "but it's only about converting undef"

converting undef is differently handled with ++, enabling warnings doesn't help here!

see Re^3: Numification of strings

Cheers Rolf

Replies are listed 'Best First'.
Re^5: Numification of strings
by ikegami (Patriarch) on Aug 03, 2010 at 05:11 UTC
    More like "doesn't hurt".
    ++$count{$_} for @list;
    would have to be written
    $count{$_} = $count{$_}//0 + 1 for @list;
    if warnings had an effect.

Log In?
Username:
Password:

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

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

    No recent polls found