How to Install and Uninstall perl-Return-Value Package on openSUSE Leap

Last updated: June 16,2024

1. Install "perl-Return-Value" package

This tutorial shows how to install perl-Return-Value on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Return-Value

2. Uninstall "perl-Return-Value" package

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

$ sudo zypper remove perl-Return-Value

3. Information about the perl-Return-Value package on openSUSE Leap

Information for package perl-Return-Value:
------------------------------------------
Repository : Main Repository
Name : perl-Return-Value
Version : 1.666005-bp155.2.10
Arch : noarch
Vendor : openSUSE
Installed Size : 40.8 KiB
Installed : No
Status : not installed
Source package : perl-Return-Value-1.666005-bp155.2.10.src
Upstream URL : http://search.cpan.org/dist/Return-Value/
Summary : (deprecated) polymorphic return values
Description :
Polymorphic return values are a horrible idea, but this library was written
based on the notion that they were useful. Often, we just want to know if
something worked or not. Other times, we'd like to know what the error text
was. Still others, we may want to know what the error code was, and what
the error properties were. We don't want to handle objects or data
structures for every single return value, but we do want to check error
conditions in our code because that's what good programmers do.
When functions are successful they may return true, or perhaps some useful
data. In the quest to provide consistent return values, this gets confusing
between complex, informational errors and successful return values.
This module provides these features with a simplistic API that should get
you what you're looking for in each context a return value is used in.