Help for this page

Select Code to Download


  1. or download this
    while( my ( $z, $y, $x, $w ) = @{ $iter->next // last } ) { }
    
  2. or download this
    while( my ($a_permutation) = $iter->next ) {
       ...
    }
    
  3. or download this
    while( my @permutation = $iter->next ) {
       ...
    }