How to Install and Uninstall expected-devel.noarch Package on Red Hat Enterprise Linux 8 (RHEL 8)

Last updated: October 09,2024

1. Install "expected-devel.noarch" package

This tutorial shows how to install expected-devel.noarch on Red Hat Enterprise Linux 8 (RHEL 8)

$ sudo dnf update $ sudo dnf install expected-devel.noarch

2. Uninstall "expected-devel.noarch" package

Please follow the guidance below to uninstall expected-devel.noarch on Red Hat Enterprise Linux 8 (RHEL 8):

$ sudo dnf remove expected-devel.noarch $ sudo dnf autoremove

3. Information about the expected-devel.noarch package on Red Hat Enterprise Linux 8 (RHEL 8)

Last metadata expiration check: 0:18:38 ago on Mon Feb 26 15:59:38 2024.
Available Packages
Name : expected-devel
Version : 1.1.0
Release : 1.el8
Architecture : noarch
Size : 26 k
Source : expected-1.1.0-1.el8.src.rpm
Repository : epel
Summary : Development files for expected
URL : https://github.com/TartanLlama/expected
License : CC0-1.0
Description : Header-only Development files for expected.
:
: std::expected is proposed as the preferred way to represent objec
: which will either have an expected value, or an unexpected value
: giving information about why something failed. Unfortunately,
: chaining together many computations which may fail can be verbose,
: as error-checking code will be mixed in with the actual programming
: logic. This implementation provides a number of utilities to make
: coding with expected cleaner.