agaffney has asked for the wisdom of the Perl Monks concerning the following question:
This causes $hashref to be assigned to the anonymous hash returned from retrieve() so that it no longer points to the tied hash. It is then no longer case insensitive. How can I make this work?use Hash::Case::Lower; use Storable; tie my(%realhash), 'Hash::Case::Lower'; my $hashref = \%realhash; $hashref = retrieve('somefile');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: using Hash::Case and Storable together
by tkil (Monk) on Apr 26, 2004 at 07:53 UTC | |
|
Re: using Hash::Case and Storable together
by eserte (Deacon) on Apr 26, 2004 at 12:26 UTC | |
by agaffney (Beadle) on May 02, 2004 at 05:33 UTC |