How to Install and Uninstall perl-Devel-PartialDump Package on openSUSE Leap

Last updated: May 14,2024

1. Install "perl-Devel-PartialDump" package

This guide covers the steps necessary to install perl-Devel-PartialDump on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Devel-PartialDump

2. Uninstall "perl-Devel-PartialDump" package

Here is a brief guide to show you how to uninstall perl-Devel-PartialDump on openSUSE Leap:

$ sudo zypper remove perl-Devel-PartialDump

3. Information about the perl-Devel-PartialDump package on openSUSE Leap

Information for package perl-Devel-PartialDump:
-----------------------------------------------
Repository : Main Repository
Name : perl-Devel-PartialDump
Version : 0.20-bp155.2.11
Arch : noarch
Vendor : openSUSE
Installed Size : 42.2 KiB
Installed : No
Status : not installed
Source package : perl-Devel-PartialDump-0.20-bp155.2.11.src
Upstream URL : http://search.cpan.org/dist/Devel-PartialDump/
Summary : Partial dumping of data structures, optimized for argument printing
Description :
This module is a data dumper optimized for logging of arbitrary parameters.
It attempts to truncate overly verbose data, in a way that is hopefully
more useful for diagnostics warnings than
warn Dumper(@stuff);
Unlike other data dumping modules there are no attempts at correctness or
cross referencing, this is only meant to provide a slightly deeper look
into the data in question.
There is a default recursion limit, and a default truncation of long lists,
and the dump is formatted on one line (new lines in strings are escaped),
to aid in readability.
You can enable it temporarily by importing functions like 'warn', 'croak'
etc to get more informative errors during development, or even use it as:
BEGIN { local $@; eval "use Devel::PartialDump qw(...)" }
to get DWIM formatting only if it's installed, without introducing a
dependency.