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

Last updated: September 29,2024

1. Install "expected-devel.noarch" package

Please follow the instructions below to install expected-devel.noarch on CentOS Stream 9

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

2. Uninstall "expected-devel.noarch" package

This tutorial shows how to uninstall expected-devel.noarch on CentOS Stream 9:

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

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

Last metadata expiration check: 1:25:43 ago on Sat Mar 16 16:03:45 2024.
Available Packages
Name : expected-devel
Version : 1.1.0
Release : 1.el9
Architecture : noarch
Size : 25 k
Source : expected-1.1.0-1.el9.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.