golang-github-steveyen-gtreap 0.0~git20150807.0.0abe01e-1 source package in Ubuntu

Changelog

golang-github-steveyen-gtreap (0.0~git20150807.0.0abe01e-1) unstable; urgency=medium

  * Initial release (Closes: #855672)

 -- Michael Lustfield <email address hidden>  Mon, 20 Feb 2017 22:40:29 -0600

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

Builds

Artful: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-steveyen-gtreap_0.0~git20150807.0.0abe01e-1.dsc 2.3 KiB dd22ce0634e2cb04ecb84f6d1683124efbf00bdf160485ea767918da235f7225
golang-github-steveyen-gtreap_0.0~git20150807.0.0abe01e.orig.tar.xz 4.3 KiB fad804cf10f2684ae7b0dbee3a277b140bec521f872cd80d60b3fc3b1e02d999
golang-github-steveyen-gtreap_0.0~git20150807.0.0abe01e-1.debian.tar.xz 2.2 KiB 32550fd58def5645ab7998593132f4853fa8ccee624862e425de86575b524a59

No changes file available.

Binary packages built by this source

golang-github-steveyen-gtreap-dev: gtreap is an immutable treap implementation in the Go Language

 Gtreap implements an immutable treap data structure in golang.
 .
 By treap, this data structure is both a heap and a binary search tree.
 .
 By immutable, any updates/deletes to a treap will return a new treap
 which can share internal nodes with the previous treap. All nodes in this
 implementation are read-only after their creation. This allows concurrent
 readers to operate safely with concurrent writers as modifications only
 create new data structures and never modify existing data structures.
 This is a simple approach to achieving MVCC or multi-version concurrency
 control.
 .
 By heap, items in the treap follow the heap-priority property, where a
 parent node will have higher priority than its left and right children
 nodes.
 .
 By binary search tree, items are store lexigraphically, ordered by a
 user-supplied Compare function.