NAME

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

VERSION

Version 0.10

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 [, key1 => value1 ] )

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

key/value pairs modify the output style. Currently, all that's supported is comma => 1 to insert commas in the numbers.

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.