Help for this page

Select Code to Download


  1. or download this
      foreach $id (sort keys %quantum) {
    
  2. or download this
          foreach $date ( sort ... keys %{$quantum{$applid}}) { }
    
  3. or download this
                sort {   $a->{int(substr($quantum{$id},2,2))} <=> $b->{int
    +(substr($quantum{$id},2,2))}
                      || $a->{int(substr($quantum{$id},0,2))} <=> $b->{int
    +(substr($quantum{$id},0,2))} }
    
  4. or download this
    foreach my $id (sort keys %quantum) {
        foreach my $date (
                sort {   int(substr($quantum{$id}{$a},2,2)) <=> int(substr
    +($quantum{$id}{$b},2,2))
    ...
                keys %{$quantum{$id}}) {
        }
    }