diff options
Diffstat (limited to 'ext/Devel-Peek/Peek.pm')
-rw-r--r-- | ext/Devel-Peek/Peek.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/Devel-Peek/Peek.pm b/ext/Devel-Peek/Peek.pm index ab0d5eb760..a44acfffef 100644 --- a/ext/Devel-Peek/Peek.pm +++ b/ext/Devel-Peek/Peek.pm @@ -3,7 +3,7 @@ package Devel::Peek; -$VERSION = '1.07'; +$VERSION = '1.08'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -155,6 +155,7 @@ the information about the allocated size and usable size of chunks in each bucket. Again, see L<perldebguts/Using C<$ENV{PERL_DEBUG_MSTATS}>> for details. + Keep in mind that only the first several "odd-numbered" buckets are used, so the information on size of the "odd-numbered" buckets which are not used is probably meaningless. @@ -410,7 +411,7 @@ The output: IV = 42 This shows C<$a> is a reference pointing to an SV. That SV is a PVHV, a -hash. Fields RITER and EITER are used by C<L<each>>. +hash. Fields RITER and EITER are used by C<L<perlfunc/each>>. The "quality" of a hash is defined as the total number of comparisons needed to access every element once, relative to the expected number needed for a |