Help for this page

Select Code to Download


  1. or download this
    sub by_hashval_func {
        my ( $hashref ) = @_;
    ...
    foreach my $key ( sort by_hashval_func( \%hash ) keys %hash ) {
        # do something useful
    }
    
  2. or download this
    sub by_hashval_func {
        my ( $hashref ) = @_;
        return sub($$) { $hashref->{ $_[0] } cmp $hashref->{ $_[1] } };
    }