in reply to RE: Re: Whither the truth of a tied hash?
in thread Whither the truth of a tied hash?

The only thing I found that helped at all was copying the hash with a simple:
my %i = %h; my $c = %i; print "count is $c\n";
I even made an AUTOLOAD subroutine, to see if I could trap any other method calls. No luck.

Replies are listed 'Best First'.
RE: Whither the truth of a tied hash?
by mojotoad (Monsignor) on Apr 29, 2000 at 01:04 UTC
    Ah, well. I figured as much. I guess I'll mine the net to see if it's a known problem with perl; if it has not been discussed yet I'll toss it at the porters.