Re: [Perl-unix-users] REUSED ADDRESS in Data::dumper

2003-02-26 Thread Andy_Bach
>From the Dumpvalue pm # Check for reused addresses if (ref $v) { my $val = $v; { no strict 'refs'; $val = &{'overload::StrVal'}($v) if defined %overload:: and defined &{'overload::StrVal'}; } ($address) = $val =~ /(0x[0-9a-f]+)\)$/ ; if (!$self->{dum

Re: [Perl-unix-users] REUSED ADDRESS in Data::dumper

2003-02-26 Thread $Bill Luebkert
Martin Moss wrote: All, When I dump a hash structure using 'x' on the perl debugger it looks like this:- 0 HASH(0x8658db4) '_load' => HASH(0x8ad6b00) 'PROCESSING' => 1 'STRUC' => HASH(0x8b56f94) -> REUSED_ADDRESS I am curious as to what REUSED_ADDRESS me

[Perl-unix-users] REUSED ADDRESS in Data::dumper

2003-02-26 Thread Martin Moss
All, When I dump a hash structure using 'x' on the perl debugger it looks like this:- 0 HASH(0x8658db4) '_load' => HASH(0x8ad6b00) 'PROCESSING' => 1 'STRUC' => HASH(0x8b56f94) -> REUSED_ADDRESS I am curious as to what REUSED_ADDRESS means? I am concerne