[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index][Thread Index][Top&Search][Original]

Released Data::Peek



After a presentation on Amsterdam.pm yesterday, I renamed DDumper to
Data::Peek, and released it on CPAN. People seems to like it and wanted
to use it.

NAME
       Data::Peek - A collection of low-level debug facilities

SYNOPSIS
        use Data::Peek;

        print DDumper \%hash;    # Same syntax as Data::Dumper

        print DPeek \$var;
        my ($pv, $iv, $nv, $rv, $magic) = DDual ($var [, 1]);
        print DPeek for DDual ($!, 1);

        my $dump = DDump $var;
        my %hash = DDump \@list;
        DDump \%hash;

        my %hash = DDump (\%hash, 5);  # dig 5 levels deep

        my $dump;
        open my $fh, ">", \$dump;
        DDump_IO ($fh, \%hash, 6);
        close $fh;
        print $dump;

DESCRIPTION
       Data::Peek started of as "DDumper" being a wrapper module over
       Data::Dumper, but grew out to be a set of low-level data introspection
       utilities that no other module provided yet, using the lowest level of
       the perl internals API as possible.

-- 
H.Merijn Brand          Amsterdam Perl Mongers  http://amsterdam.pm.org/
using & porting perl 5.6.2, 5.8.x, 5.10.x, 5.11.x on HP-UX 10.20, 11.00,
11.11, 11.23, and 11.31, SuSE 10.1, 10.2, and 10.3, AIX 5.2, and Cygwin.
http://mirrors.develooper.com/hpux/           http://www.test-smoke.org/
http://qa.perl.org      http://www.goldmark.org/jeff/stupid-disclaimers/


Follow-Ups from:
Joshua Juran <jjuran@gmail.com>

[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index][Thread Index][Top&Search][Original]