Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^3: Sequential defined-or operators

by ikegami (Patriarch)
on Jan 14, 2008 at 12:18 UTC ( [id://662281]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Sequential defined-or operators
in thread Sequential defined-or operators

Just be careful with precedence. Absent prototypes overriding the default,

my $value = $hash{$arg} // func $arg // 'default';
means
my $value = $hash{$arg} // func($arg // 'default');

Putting parens around the low precedence bit solves the problem.

my $value = $hash{$arg} // (func $arg) // 'default';

Of course, with functions, you can also do

my $value = $hash{$arg} // func($arg) // 'default';

Replies are listed 'Best First'.
Re^4: Sequential defined-or operators
by naikonta (Curate) on Jan 16, 2008 at 16:54 UTC
    Yes, I'm aware about this issue. I wrote related matter sometime ago. So I believe it will be perfectly fine to write:
    my $value = $hash{$key} // func $arg // 'default';
    knowing that func is a unary operator.

    Open source softwares? Share and enjoy. Make profit from them if you can. Yet, share and enjoy!

Log In?
Username:
Password:

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

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

    No recent polls found