NAME

Eponymous::Hash - Translates named variables to a hash list with corresponding keys

DESCRIPTION

Translates named variables to a hash list with corresponding keys

USAGE

use Eponymous::Hash;

my $mammal = 'ponycorn';
my $diet   = 'sprinkles';

my %hash = eponymous_hash($mammal, $diet)
# (mammal => 'ponycorn', diet => 'sprinkles')

OR

use Eponymous::Hash 'epy'
my %hash = epy($mammal, $diet);

METHODS

eponymous_hash

Default method name. If parameter is passed to use statement, parameter will be used instead.

VERSION

0.01

AUTHOR

Glen Hinkle tempire@cpan.org