Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: improve ugly flow control

by Aristotle (Chancellor)
on Sep 19, 2004 at 07:11 UTC ( [id://392126]=note: print w/replies, xml ) Need Help??


in reply to improve ugly flow control

The obvious answer is, of course, a labelled block.

TRY: { foreach my $try ( @options ) { next unless exists $hash{ $try }; do_something( $try ); last TRY; } log_failure(); }

Makeshifts last the longest.

Replies are listed 'Best First'.
Re^2: improve ugly flow control (goto considered useful)
by Pragma (Scribe) on Sep 19, 2004 at 10:53 UTC
    This would have been obvious 30 years ago; perhaps less so today:
    foreach my $try (@options) { next unless exists $hash{$try}; do_something($try); goto SUCCESS; } log_failure(); SUCCESS: ...

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (5)
As of 2024-04-25 09:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found