in reply to Re^6: Dumb, non-question: How to return 'nothing'.
in thread Dumb, non-question: How to return 'nothing'.
The point was that while( my $next = $iter->() ) { ($next) = @$next; ... } is a complicated version of while( my $next = @{ $iter->() } ) { ... }
Not so. In the latter case when the iterator returns undef to terminate iteration, you will attempt to dereference that undef causing an error.
In the former, the loop terminates and the dereference is never reached.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: Dumb, non-question: How to return 'nothing'.
by ikegami (Patriarch) on Jun 18, 2011 at 10:12 UTC |