Help for this page

Select Code to Download


  1. or download this
    $VAR1 = {
        clock => 'blah/1',
    ...
        longest_delay => '1.000',
        shortest_delay => '1.100',
    };
    
  2. or download this
    my @values = generate_data_from_some_datasource($data_source);
    # @values is now an array of hashrefs, each looking like the one above
    
    my @sorted_values = sort { $a->{clock} cmp $b->{clock} } @values;