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

Last updated: July 02,2024

1. Install "perl-Data-Visitor" package

This is a short guide on how to install perl-Data-Visitor on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Data-Visitor

2. Uninstall "perl-Data-Visitor" package

This guide let you learn how to uninstall perl-Data-Visitor on openSuSE Tumbleweed:

$ sudo zypper remove perl-Data-Visitor

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

Information for package perl-Data-Visitor:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Data-Visitor
Version : 0.32-1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 60.8 KiB
Installed : No
Status : not installed
Source package : perl-Data-Visitor-0.32-1.4.src
Upstream URL : https://metacpan.org/release/Data-Visitor
Summary : Visitor style traversal of Perl data structures
Description :
This module is a simple visitor implementation for Perl values.
It has a main dispatcher method, 'visit', which takes a single perl value
and then calls the methods appropriate for that value.
It can recursively map (cloning as necessary) or just traverse most
structures, with support for per object behavior, circular structures,
visiting tied structures, and all ref types (hashes, arrays, scalars, code,
globs).
Data::Visitor is meant to be subclassed, but also ships with a callback
driven subclass, Data::Visitor::Callback.