How to Install and Uninstall perl-Heap Package on openSuSE Tumbleweed

Last updated: February 24,2025

1. Install "perl-Heap" package

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

$ sudo zypper refresh $ sudo zypper install perl-Heap

2. Uninstall "perl-Heap" package

This tutorial shows how to uninstall perl-Heap on openSuSE Tumbleweed:

$ sudo zypper remove perl-Heap

3. Information about the perl-Heap package on openSuSE Tumbleweed

Information for package perl-Heap:
----------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Heap
Version : 0.80-1.17
Arch : noarch
Vendor : openSUSE
Installed Size : 62.9 KiB
Installed : No
Status : not installed
Source package : perl-Heap-0.80-1.17.src
Upstream URL : https://metacpan.org/release/Heap
Summary : Perl extensions for keeping data partially sorted
Description :
The Heap collection of modules provide routines that manage a heap of
elements. A heap is a partially sorted structure that is always able to
easily extract the smallest of the elements in the structure (or the
largest if a reversed compare routine is provided).
If the collection of elements is changing dynamically, the heap has less
overhead than keeping the collection fully sorted.
The elements must be objects as described in "Heap::Elem" and all elements
inserted into one heap must be mutually compatible - either the same class
exactly or else classes that differ only in ways unrelated to the
*Heap::Elem* interface.