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

Changelog

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

  [ Debian Janitor ]
  * Wrap long lines in changelog entries: 1.0-2.
  * Set upstream metadata fields: Repository-Browse.
  * Set upstream metadata fields: Bug-Database, Bug-Submit.

 -- Jelmer Vernooij <email address hidden>  Thu, 08 Dec 2022 00:55:55 +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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-aalpar-deheap_1.0-3.dsc 2.2 KiB 089d4ef1d943b015dffe453cb3e17503981fa9a8f8d0ca794a3d851347f74a9f
golang-github-aalpar-deheap_1.0.orig.tar.gz 6.4 KiB 766c7fe1840199e60f0c736085a0889d5e957f5dfb02c329caa1e3d535878b76
golang-github-aalpar-deheap_1.0-3.debian.tar.xz 2.5 KiB df70cb55c07e5a14e60e816ba971083f1602971fcf676ec765da5773b8f4a47e

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