>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
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
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