How to Install and Uninstall expected-devel.noarch Package on Fedora 34

Last updated: October 05,2024

1. Install "expected-devel.noarch" package

This tutorial shows how to install expected-devel.noarch on Fedora 34

$ 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 Fedora 34:

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

3. Information about the expected-devel.noarch package on Fedora 34

Last metadata expiration check: 0:40:29 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : expected-devel
Version : 1.0.0
Release : 4.fc34
Architecture : noarch
Size : 24 k
Source : expected-1.0.0-4.fc34.src.rpm
Repository : fedora
Summary : Development files for expected
URL : https://github.com/TartanLlama/expected
License : CC0
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.