How to Install and Uninstall perl-Return-Value Package on openSuSE Tumbleweed

Last updated: July 02,2024

1. Install "perl-Return-Value" package

Please follow the instructions below to install perl-Return-Value on openSuSE Tumbleweed

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

2. Uninstall "perl-Return-Value" package

Please follow the guidelines below to uninstall perl-Return-Value on openSuSE Tumbleweed:

$ sudo zypper remove perl-Return-Value

3. Information about the perl-Return-Value package on openSuSE Tumbleweed

Information for package perl-Return-Value:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Return-Value
Version : 1.666005-1.24
Arch : noarch
Vendor : openSUSE
Installed Size : 40.6 KiB
Installed : No
Status : not installed
Source package : perl-Return-Value-1.666005-1.24.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.