NAME

Data::Hash::Totals - Handle hashes that are totals or counts

VERSION

Version 0.04

SYNOPSIS

This module is so butt simple, but I'm tired of redoing this code over and over again.

my %fave_stooge_votes = (
    Moe => 31,
    Larry => 15,
    Curly => 97,
    Shemp => 3,
);

print as_table( \%fave_stooge_votes );

prints the following:

97 Curly
31 Moe
15 Larry
 3 Shemp

EXPORTS

Exports as_table.

FUNCTIONS

as_table( $hashref )

Prints the contents of $hashref as a table in descending value order.

AUTHOR

Andy Lester, <andy@petdance.com>

BUGS

Please report any bugs or feature requests to bug-data-hash-totals@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2004 Andy Lester, All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.