Help for this page
sub list_iter { my @list = @_; ... while( my ($next) = $iter->() ) { print( $next // '[undef]', "\n" ); }
sub list_iter { my @list = @_; ... while( $iter->( my $next ) ) { print( $next // '[undef]', "\n" ); }
a 1 ... 0 [undef] -1