Allocated length for PV's depends on arch (upped test to 8)
[Data-Peek.git] / README
blob84b23111d72b754e9a3159938ff3f9b8145ec126
1 Module:
2     DDumper
4 Description:
5     Modified and extended wrapper functions to make debugging more
6     pleasureable.
8     DDumper is a wrapper around Data::Dumper with always sorted keys.
9     The output is however reflowed and not parseable anymore (in most
10     cases) as the quotation around the keys is removed.
12     DDump is a wrapper around perl's core function sv_dump (), which
13     should enable you to use the output instead of the default behaviour
14     that only prints to STDERR.
16     DPeek is a wrapper around internals Perl_sv_peek
18     DDump_IO is a wrapper around perl's core function do_sv_dump (),
19     which acts like sv_dump (), but to a PerlIO stream, which is only
20     available in perl 5.8 and higher.
22 Copying:
23     Copyright (c) 2008-2008 H.Merijn Brand.  All rights reserved.
25     This program is free software; you can redistribute it and/or modify
26     it under the same terms as Perl itself.
28 Prerequisites:
29     Perl 5.6.0 and up.
30     Some versions of perl on some operating system(s) might not have
31     exported the internals (yet). This module won't build then.
33 Build/Installation:
34     Standard build/installation:
35         perl Makefile.PL
36         make
37         make test
38         make install
40 Author:
41     H.Merijn Brand <h.m.brand@xs4all.nl>