Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Heisenberg Uncertainty Hash

by ikegami (Patriarch)
on Apr 26, 2005 at 22:51 UTC ( [id://451795]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # If record 'd' does not exist:
    if (!$hash{'d'})
    
  2. or download this
    # If record 'd' does not exist, or
    # if record 'd' exists but has no field 'value':
    if (!$hash{'d'} || !exists($hash{'d'}{'value'}))
    
  3. or download this
    # If record 'd' does not exist,
    # if record 'd' exists but has no field 'value', or
    # if record 'd' exists and has field 'value' but is undefined:
    if (!$hash{'d'} || !defined($hash{'d'}{'value'}))
    
  4. or download this
    # If record 'd' does not exist,
    # if record 'd' exists but has no field 'value',
    ...
    # if record 'd' exists and has field 'value' but is "0", or
    # if record 'd' exists and has field 'value' but is '':
    if (!$hash{'d'} || !$hash{'d'}{'value'})
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (6)
As of 2024-03-28 14:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found