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

Last updated: January 12,2025

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

Here is a brief guide to show you how to install golang-github-benbjohnson-immutable-devel.noarch on Fedora 36

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

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

Please follow the step by step instructions below to uninstall golang-github-benbjohnson-immutable-devel.noarch on Fedora 36:

$ 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 36

Last metadata expiration check: 2:12:10 ago on Thu Sep 8 08:04:50 2022.
Available Packages
Name : golang-github-benbjohnson-immutable-devel
Version : 0.3.0
Release : 4.fc36
Architecture : noarch
Size : 34 k
Source : golang-github-benbjohnson-immutable-0.3.0-4.fc36.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