How to Install and Uninstall golang-github-benbjohnson-immutable-devel.noarch Package on Fedora 34

Last updated: October 09,2024

1. Install "golang-github-benbjohnson-immutable-devel.noarch" package

In this section, we are going to explain the necessary steps to install golang-github-benbjohnson-immutable-devel.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install golang-github-benbjohnson-immutable-devel.noarch

2. Uninstall "golang-github-benbjohnson-immutable-devel.noarch" package

This tutorial shows how to uninstall golang-github-benbjohnson-immutable-devel.noarch on Fedora 34:

$ sudo dnf remove golang-github-benbjohnson-immutable-devel.noarch $ sudo dnf autoremove

3. Information about the golang-github-benbjohnson-immutable-devel.noarch package on Fedora 34

Last metadata expiration check: 2:16:14 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : golang-github-benbjohnson-immutable-devel
Version : 0.3.0
Release : 2.fc34
Architecture : noarch
Size : 34 k
Source : golang-github-benbjohnson-immutable-0.3.0-2.fc34.src.rpm
Repository : fedora
Summary : Immutable collections for Go
URL : https://github.com/benbjohnson/immutable
License : MIT
Description : This repository contains immutable collection types for Go. It includes List,
: Map, and SortedMap implementations. Immutable collections can provide efficient,
: lock free sharing of data by requiring that edits to the collections return new
: collections.
:
: The collection types in this library are meant to mimic Go built-in collections
: such asslice and map. The primary usage difference between Go collections and
: immutable collections is that immutable collections always return a new
: collection on mutation so you will need to save the new reference.
:
: Immutable collections are not for every situation, however, as they can incur
: additional CPU and memory overhead. Please evaluate the cost/benefit for your
: particular project.
:
: This package contains the source code needed for building packages that
: reference the following Go import paths:
: – github.com/benbjohnson/immutable