Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^3: Unconventional exit from while loop

by hdb (Monsignor)
on May 26, 2013 at 14:17 UTC ( [id://1035314]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Unconventional exit from while loop
in thread Unconventional exit from while loop

This is what has caused me to ask the question in the first place. The condition in while always returns true until the iterator is exhausted, but before while has a chance to exit, last takes over. So the whole while statement seems redundant.

Replies are listed 'Best First'.
Re^4: Unconventional exit from while loop
by BrowserUk (Patriarch) on May 26, 2013 at 14:21 UTC
    So the whole while statement seems redundant.

    Yeah. This would probably be better:

    { my( ... ) = @{ $iter->next // last }; ... redo; }

    At least the exit and the cause of the exit is clear.


    With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

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

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

    No recent polls found