NAME

Egg::Plugin::IxHash - Tie::Hash::Indexed for Egg plugin.

SYNOPSIS

use Egg qw/ IxHash /;

my $ix= $e->ixhash( I => 1, n => 2, d => 3, e => 4 );
$ix->{x} = 5;

print keys %$ix, "\n";    # prints 'Index'
print values %$ix, "\n";  # prints '12345'

METHOD

ixhash ( [HASH] )

HASH is returned and the HASH reference of receipt Tie::Hash::Indexed is returned.

SEE ALSO

Tie::Hash::Indexed, Egg::Release,

AUTHOR

Masatoshi Mizuno <lushe@cpan.org>

COPYRIGHT

Copyright (C) 2007 by Bee Flag, Corp. <http://egg.bomcity.com/>, All Rights Reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.