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

Last updated: October 05,2024

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

Please follow the steps below to install golang-github-benbjohnson-immutable-devel.noarch on Fedora 35

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

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

This guide let you learn how to uninstall golang-github-benbjohnson-immutable-devel.noarch on Fedora 35:

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

Last metadata expiration check: 4:43:02 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : golang-github-benbjohnson-immutable-devel
Version : 0.3.0
Release : 3.fc35
Architecture : noarch
Size : 34 k
Source : golang-github-benbjohnson-immutable-0.3.0-3.fc35.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