| Tie-Hash-Constant documentation | Contained in the Tie-Hash-Constant distribution. |
Tie::Hash::Constant - make a hash return a constant for all its members
use Tie::Hash::Constant;
tie my %always_pie, 'Tie::Hash::Constant' => 'PIE!';
$always_pie{food} = "salad";
print "My favourite food is $always_pie{food}\n"; # prints "My favourite food is PIE!"
print "There is no $always_pie{spoon}\n"; # prints "There is no PIE!\n"; !!!
Tie::Hash::Constant allows you to define a constant to be returned as all values contained within a hash.
It has marginal use as a debugging tool.
Richard Clamp <richardc@unixbeard.net>
Copyright Richard Clamp 2004. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
None known.
Bugs should be reported to me via the CPAN RT system. http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Tie::Hash::Constant.
Tie::Hash
| Tie-Hash-Constant documentation | Contained in the Tie-Hash-Constant distribution. |
package Tie::Hash::Constant; use strict; use warnings; our $VERSION = 0.01;
sub TIEHASH { my $class = shift; my $constant = shift; return bless \$constant, $class; } sub FETCH { my $self = shift; return $$self; } sub STORE {} 1; __END__