Help for this page

Select Code to Download


  1. or download this
    sub gen_each_iter(\%) {
       my ($hash) = @_;
    ...
    while (my ($key, $val) = $each->()) {
       ...
    }
    
  2. or download this
    my @keys = keys(%foo);
    
    ...
    while (my ($key, $val) = $each->()) {
       ...
    }