How to Install and Uninstall expected-devel.noarch Package on CentOS Stream 8

Last updated: October 07,2024

1. Install "expected-devel.noarch" package

This is a short guide on how to install expected-devel.noarch on CentOS Stream 8

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

2. Uninstall "expected-devel.noarch" package

Here is a brief guide to show you how to uninstall expected-devel.noarch on CentOS Stream 8:

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

3. Information about the expected-devel.noarch package on CentOS Stream 8

Last metadata expiration check: 0:31:13 ago on Sun Feb 25 03:03:59 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.