Help for this page

Select Code to Download


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