Help for this page

Select Code to Download


  1. or download this
    while( my $next = $iter->() ) {
        my @next = @$next;
        ...
    }
    
  2. or download this
    while( my @next = @{ $iter->() } ) {
        ...
    }
    
  3. or download this
    while( my $next = $iter->() ) {
        ($next) = @$next;
        ...
    }
    
  4. or download this
    while( my $next = @{ $iter->() } ) {
        ...
    }
    
  5. or download this
    while( my ($next) = $iter->() ) {
        ...
    }