in reply to Re^3: Unconventional exit from while loop
in thread Unconventional exit from while loop
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.
|
|---|