golang-github-aalpar-deheap 1.0-2 source package in Ubuntu

Changelog

golang-github-aalpar-deheap (1.0-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + golang-github-aalpar-deheap-dev: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Fri, 25 Nov 2022 23:34:16 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-aalpar-deheap_1.0-2.dsc 2.2 KiB 83c3857206af282b3dc8618a4d947900e79306509d34431d9b5705c9fc9dbf60
golang-github-aalpar-deheap_1.0.orig.tar.gz 6.4 KiB 766c7fe1840199e60f0c736085a0889d5e957f5dfb02c329caa1e3d535878b76
golang-github-aalpar-deheap_1.0-2.debian.tar.xz 2.4 KiB 75a1b8114afbf740f4d60d744a3bee412bfb5c82fd7bc1b802edc79e6bbea32f

Available diffs

No changes file available.

Binary packages built by this source

golang-github-aalpar-deheap-dev: Doubly ended heap implementation (library)

 deheap provides the implementation of a doubly ended heap.
 Doubly ended heaps are heaps with two sides, a min side and a max side.
 Like normal single-sided heaps, elements can be pushed onto and pulled
 off of a deheap. deheaps have an additional Pop function, PopMax,
 that returns elements from the opposite side of the ordering.
 .
 This implementation has emphasized compatibility with existing libraries
 in the sort and heap packages.
 .
 Performance of the deheap functions should be very close to the performance
 of the functions of the heap library