Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: "undef" is not NULL and what to do about it

by BrowserUk (Patriarch)
on Feb 21, 2013 at 16:30 UTC ( [id://1019977]=note: print w/replies, xml ) Need Help??


in reply to "undef" is not NULL and what to do about it

I kind of see the problem you perceive, though I'd much prefer to handle it with defined:

foreach my $employee (@employees) { if ( defined $employee->salary and $employee->salary < $threshold +) { increase_salary( $employee, 3_000 ); } }

Double reference to $employee->salary or not; I bet it is a) more efficient than your module; b) far less prone to misunderstanding or accidental disablement than your scary-action-at-a distance module.

Personally; I think that instead of initialising things as unknown, you'd achieve a better effect by initialising them as #NaN>.

Indeed, I can see the case for a pragma to cause undef to be treated as #NaN in numeric contexts.

A lexically scoped use undefAsNaN; could be very useful I think.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (3)
As of 2024-04-16 03:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found