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


SchemaView-Plus documentation  | view source Contained in the SchemaView-Plus distribution.

Index


NAME

Top

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

SYNOPSIS

Top

	use Data::CompactDump qw/compact/;

	my @xd_structure = [ [ 1, 2 ], [ 3, [ 4, 5 ] ] ];
	my $dump = compact(@xd_structure);




DESCRIPTION

Top

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

FUNCTIONS

Top

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

Top

0.02

AUTHOR

Top

(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

Top

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


SchemaView-Plus documentation  | view source Contained in the SchemaView-Plus distribution.