NAME
Data::CompactDump - Perl extension for dumping xD structures in compact form
SYNOPSIS
use Data::CompactDump qw/compact/;
my @xd_structure = [ [ 1, 2 ], [ 3, [ 4, 5 ] ] ];
my $dump = compact(@xd_structure);
DESCRIPTION
Module provides some functions for dumping xD structures (like Data::Dump or Data::Dumper) but in compact form.
FUNCTIONS
compact xD
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);
VERSION
0.02
AUTHOR
(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
).
SEE ALSO
perl(1), svplus(1), Data::Dump(3), Data::Dumper(3).