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

Last updated: October 15,2024

1. Install "expected-devel.noarch" package

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

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

2. Uninstall "expected-devel.noarch" package

In this section, we are going to explain the necessary steps to uninstall expected-devel.noarch on AlmaLinux 9:

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

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

Last metadata expiration check: 1:52:29 ago on Wed Mar 13 07:41:12 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.