golang-github-benbjohnson-immutable 0.2.0-2 source package in Ubuntu

Changelog

golang-github-benbjohnson-immutable (0.2.0-2) unstable; urgency=medium

  * Source only upload.

 -- Lucas Kanashiro <email address hidden>  Thu, 18 Jun 2020 19:07:38 -0300

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-benbjohnson-immutable_0.2.0-2.dsc 2.3 KiB 32c3d86e8a93c4daac6e0062fb1a910c716257f77b6ec0eefe72485b10b37ebe
golang-github-benbjohnson-immutable_0.2.0.orig.tar.gz 25.3 KiB 7ff3c452b3b9f8ac294e399ada8fe56809ba75445437bd736dcacb92823fa849
golang-github-benbjohnson-immutable_0.2.0-2.debian.tar.xz 2.6 KiB d2c426bacbaac19cb783a3a7be28e7d35fde585a248f53f39b7e7a85a0f7379e

Available diffs

No changes file available.

Binary packages built by this source

golang-github-benbjohnson-immutable-dev: Immutable collections for Go (library)

 This library 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.