How to Install and Uninstall perl-Data-Dump-Streamer Package on openSuSE Tumbleweed

Last updated: July 06,2024

1. Install "perl-Data-Dump-Streamer" package

Please follow the instructions below to install perl-Data-Dump-Streamer on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Data-Dump-Streamer

2. Uninstall "perl-Data-Dump-Streamer" package

Please follow the guidelines below to uninstall perl-Data-Dump-Streamer on openSuSE Tumbleweed:

$ sudo zypper remove perl-Data-Dump-Streamer

3. Information about the perl-Data-Dump-Streamer package on openSuSE Tumbleweed

Information for package perl-Data-Dump-Streamer:
------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Data-Dump-Streamer
Version : 2.42-1.5
Arch : x86_64
Vendor : openSUSE
Installed Size : 194.0 KiB
Installed : No
Status : not installed
Source package : perl-Data-Dump-Streamer-2.42-1.5.src
Upstream URL : https://metacpan.org/release/Data-Dump-Streamer
Summary : Accurately serialize a data structure as Perl code
Description :
Given a list of scalars or reference variables, writes out their contents
in perl syntax. The references can also be objects. The contents of each
variable is output using the least number of Perl statements as convenient,
usually only one. Self-referential structures, closures, and objects are
output correctly.
The return value can be evaled to get back an identical copy of the
original reference structure. In some cases this may require the use of
utility subs that Data::Dump::Streamer will optionally export.
This module is very similar in concept to the core module Data::Dumper,
with the major differences being that this module is designed to output to
a stream instead of constructing its output in memory (trading speed for
memory), and that the traversal over the data structure is effectively
breadth first versus the depth first traversal done by the others.
In fact the data structure is scanned twice, first in breadth first mode to
perform structural analysis, and then in depth first mode to actually
produce the output, but obeying the depth relationships of the first pass.