Re: using Hash::Case and Storable

2004-04-26 Thread Andrew Gaffney
Wiggins d Anconia wrote: Wiggins d Anconia wrote: [snip] my $thawed = retrieve('somefile'); tie my(%realhash), 'Hash::Case::Lower', $thawed; Ah, I guess I'd missed that part in the docs for the Hash::Case::Lower module. Is it safe to 'delete $thawed' after I tie the hash so I don't have an ex

Re: using Hash::Case and Storable

2004-04-26 Thread Wiggins d Anconia
> Wiggins d Anconia wrote: [snip] > > > > my $thawed = retrieve('somefile'); > > tie my(%realhash), 'Hash::Case::Lower', $thawed; > > Ah, I guess I'd missed that part in the docs for the Hash::Case::Lower module. Is it safe > to 'delete $thawed' after I tie the hash so I don't have an extra co

Re: using Hash::Case and Storable

2004-04-26 Thread Andrew Gaffney
Wiggins d Anconia wrote: I'm using the Storable module to save and load a hash tree. I also want to use the Hash::Case::Lower module to make my hash case insensitive. I can't figure out how to tie a hashref to the Hash::Case::Lower module and load data into it with Storable. I tried something

Re: using Hash::Case and Storable

2004-04-26 Thread Wiggins d Anconia
> I'm using the Storable module to save and load a hash tree. I also want to use the > Hash::Case::Lower module to make my hash case insensitive. I can't figure out how to tie a > hashref to the Hash::Case::Lower module and load data into it with Storable. I tried > something like: > > use Hash