NAME
Hash::ExtendedKeys - Hash Keys
VERSION
Version 1.00
SYNOPSIS
Quick summary of what the module does.
Perhaps a little code snippet.
use
Hash::ExtendedKeys;
my
$hash
= Hash::ExtendedKeys->new();
my
$ref
= {
a
=> 1,
b
=> 2,
c
=> 3 };
$hash
->{
$ref
} = 1;
$hash
->{{
a
=> 1,
b
=> 2,
c
=> 3}}++;
...
tie
my
%hash
,
'Hash::ExtendedKeys::Tie'
;
my
$ref
= [
qw/a b c/
];
$hash
{
$ref
} = 1;
$hash
{[
qw/a b c/
]}++;
METHODS
new
Instantiate a new Hash::ExtendedKeys object.
Hash::ExtendedKeys->new();
AUTHOR
LNATION, <email at lnation.org>
BUGS
Please report any bugs or feature requests to bug-hash-extendedkeys at rt.cpan.org
, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Hash-ExtendedKeys. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Hash::ExtendedKeys
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
This software is Copyright (c) 2021->2024 by LNATION.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)