How to Install and Uninstall perl-Data-Visitor Package on openSUSE Leap

Last updated: May 17,2024

1. Install "perl-Data-Visitor" package

This guide covers the steps necessary to install perl-Data-Visitor on openSUSE Leap

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

2. Uninstall "perl-Data-Visitor" package

This tutorial shows how to uninstall perl-Data-Visitor on openSUSE Leap:

$ sudo zypper remove perl-Data-Visitor

3. Information about the perl-Data-Visitor package on openSUSE Leap

Information for package perl-Data-Visitor:
------------------------------------------
Repository : Main Repository
Name : perl-Data-Visitor
Version : 0.31-bp155.2.8
Arch : noarch
Vendor : openSUSE
Installed Size : 61.3 KiB
Installed : No
Status : not installed
Source package : perl-Data-Visitor-0.31-bp155.2.8.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.