NAME
Tie::Hash::Static - Perl module for the creations of fixed-size tied hashes
SYNOPSIS
use Tie::Hash::Static;
$tiedhash = new Tie::Hash::Static(\@keys [, $hash]);
DESCRIPTION
The use of this module is relatively straight-forward. The first argument is a list of keys to allow to be accessed from within $tiedhash, and the optional second argument is a hash to search for whatever actions are performed on $tiedhash.
Any access to a key not listed in @keys is guaranteed to fail. Any access to a key that exists in $hash will cause an access to $hash, instead of the Tie::Hash::Static object.
AUTHOR
Ashley Winters <jql@accessone.com>
SEE ALSO
perl(1), perltie(1).