| Server IP : 85.112.90.236 / Your IP : 192.168.1.26 Web Server : Apache System : Linux 85-112-90-236.cprapid.com 6.12.0-211.7.3.el10_2.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 12:46:58 EDT 2026 x86_64 User : ftechme ( 1002) PHP Version : 8.2.32 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/share/doc/perl-Data-Dump/ |
Upload File : |
Data::Dump
==========
This module provides a few functions that traverse their
argument list and return a string containing Perl code that,
when C<eval>ed, produces a deep copy of the original arguments.
The main feature of the module is that it strives to produce output
that is easy to read. Example:
```perl
@a = (1, [2, 3], {4 => 5});
dump(@a);
```
Produces:
```perl
"(1, [2, 3], { 4 => 5 })"
```
If you dump just a little data, it is output on a single line. If
you dump data that is more complex or there is a lot of it, line breaks
are automatically added to keep it easy to read.
Please refer to [Data::Dump's complete documentation](https://metacpan.org/pod/Data::Dump)
for details on how to use this module, including which funcions it
exports. Or (after installation) type:
perldoc Data::Dump
To view the complete docs on your terminal.
Installation
------------
To install this module via cpanm:
> cpanm Data::Dump
Or, at the cpan shell:
cpan> install Data::Dump
If you wish to install it manually, download and unpack the tarball and
run the following commands:
perl Makefile.PL
make
make test
make install
Of course, instead of downloading the tarball you may simply clone the
git repository:
$ git clone git://github.com/garu/Data-Dump.git
LICENSE AND COPYRIGHT
---------------------
The "Data::Dump" module is written by Gisle Aas <gisle@aas.no>, based on
"Data::Dumper" by Gurusamy Sarathy <gsar@umich.edu>.
Copyright 1998-2010 Gisle Aas.
Copyright 1996-1998 Gurusamy Sarathy.
This distribution is currenly maintained by Breno G. de Oliveira.
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See http://dev.perl.org/licenses/ for more information.