
Data::CompactDump - Perl extension for dumping xD structures in compact form

use Data::CompactDump qw/compact/;
my @xd_structure = [ [ 1, 2 ], [ 3, [ 4, 5 ] ] ];
my $dump = compact(@xd_structure);

Module provides some functions for dumping xD structures (like Data::Dump or Data::Dumper) but in compact form.

Make eval-compatible form of xD structure for saving and restoring data (compact form)
my @xd_structure = [ [ 1, 2 ], [ 3, [ 4, 5 ] ] ];
my $dump = compact(@xd_structure);

0.02

(c) 2001 Milan Sorm, sorm@pef.mendelu.cz at Faculty of Economics, Mendel University of Agriculture and Forestry in Brno, Czech Republic.
This module was needed for making SchemaView Plus (svplus).

perl(1), svplus(1), Data::Dump(3), Data::Dumper(3).