Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: Sequential defined-or operators

by plobsing (Friar)
on Jan 15, 2008 at 02:39 UTC ( [id://662415]=note: print w/replies, xml ) Need Help??


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

Thats all fine and good until your default value is ask_user(). Then this fails due to eager evaluation. // fixes this fortunately.

Replies are listed 'Best First'.
Re^3: Sequential defined-or operators
by ikegami (Patriarch) on Jan 15, 2008 at 03:28 UTC
    It took me a second to understand that you are referring to the short-circuiting nature of //. If you needed the short-circuiting behaviour pre-5.10, here's one solution:
    sub first(&@) { my $cb = shift(@_); for (@_) { my $i = ref eq 'CODE' ? $_->() : $$_; my $rv; $rv = $cb->() for $i; return $i if $rv; } return; } my $theme = first { defined } \$global_config->{modes}{$current_mode}{theme}, \$theme_config->{current_theme}, \&ask_user, \'none';

Log In?
Username:
Password:

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

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

    No recent polls found