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

Re: Ternary Quizical behaviour?

by perlfan (Vicar)
on Jul 10, 2020 at 12:27 UTC ( [id://11119136]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    'b' => exists($tests{'b'}) && defined($m=$tests{'b'}) ? $m : 0,
    
  2. or download this
    'b' => (defined $tests{'b'}) ? $tests{'b'} : 0,
    
  3. or download this
    b => $tests{b} // 0,
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (7)
As of 2024-03-28 10:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found