Help for this page

Select Code to Download


  1. or download this
    for my $key (keys %coll_key_hash) {
      foreach my $rec (@recs_read) {
    ...
        }
      }
    }
    
  2. or download this
    for my $key (keys %coll_key_hash){
        for my $rec (@recs_read){
    ...
            }
        }
    }
    
  3. or download this
    for my $key (keys %coll_key_hash){
        for(my $recIdx = 0; $recIdx < scalar @recs_read; $recIdx++){
    ...
            }
        }
    }