• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ChangesH A D01-Nov-20085.8 KiB172137

MANIFESTH A D20-Feb-2000222 1915

META.ymlH A D19-May-2011741 2827

Makefile.PLH A D01-Nov-2008758 3125

READMEH A D01-Nov-2008999 5038

TodoH A D06-May-20105.3 KiB209127

TreeDumper.pmH A D19-May-201165.7 KiB2,7401,253

colors.plH A D20-Feb-20002.5 KiB10664

filters.plH A D10-Jan-20098 KiB363237

sH A D01-Nov-20082.3 KiB11994

scalar_and_origine.plH A D20-Feb-2000445 3022

test.plH A D20-Feb-2000496 184

tie_bless.plH A D20-Feb-20001.2 KiB6443

try_it.plH A D10-Jan-20092.1 KiB12991

usage.plH A D10-Jan-20092 KiB10465

README

1Data/TreeDumper
2===============
3
4Data::TreeDumper dumps any data structure. Try the examples
5that come with Data::TreeDumper.
6
7Ex:
8my $tree = { ... } ;
9print DumpTree($tree, 'Tree:') ;
10
11#output
12
13Tree:
14|- A [H1]
15|  |- a [H2]
16|  |- bbbbbb = CODE(0x8139fa0) [C3]
17|  |- c123 [C4 -> C3]
18|  `- d [R5]
19|     `- REF(0x8139fb8) [C6 -> C3]
20|- ARRAY [A7]
21|  |- 0 [S8] = elment_1
22|  |- 1 [S9] = element_2
23|  `- 2 [S10] = element_3
24`- C [H11]
25   `- b [H12]
26      `- a [H13]
27         |- a [H14]
28         |- b = CODE(0x81ab10c) [C15]
29         `- c [S16] = 42
30
31INSTALLATION
32
33To install this module type the following:
34
35   perl Makefile.PL
36   make
37   make test
38   make install
39
40COPYRIGHT AND LICENCE
41
42  Copyright (c) 2003-2008 Nadim Ibn Hamouda el Khemir. All rights
43  reserved.  This program is free software; you can redis-
44  tribute it and/or modify it under the same terms as Perl
45  itself.
46
47If you find any value in this module, mail me!  All hints, tips, flammes and wishes
48are welcome at <nadim@khemir.net>.
49
50