golang-github-armon-go-radix 1.0.0-2 source package in Ubuntu

Changelog

golang-github-armon-go-radix (1.0.0-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Bump debhelper from old 11 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.

  [ Tianon Gravi ]
  * Remove self from Uploaders

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

 -- Jelmer Vernooij <email address hidden>  Mon, 21 Nov 2022 14:40:50 +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
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-armon-go-radix_1.0.0-2.dsc 2.2 KiB 8d083f663f6f177fe01df42631b0ba15866be00a81ba32e68864e55f31e734ef
golang-github-armon-go-radix_1.0.0.orig.tar.gz 5.9 KiB 5f46692d06e8ae03ab37da3183435b69c18e69bd46aaca34945ffbbbae8dbde5
golang-github-armon-go-radix_1.0.0-2.debian.tar.xz 2.7 KiB f4aadc0c4db009d216fc9b7b5101ef8eb7627602fd49fb1a40534febe301df49

Available diffs

No changes file available.

Binary packages built by this source

golang-github-armon-go-radix-dev: Golang implementation of Radix trees

 Provides the radix package that implements a radix tree. The package only
 provides a single Tree implementation, optimized for sparse nodes.
 .
 As a radix tree, it provides the following:
 .
  - O(k) operations. In many cases, this can be faster than a hash table since
    the hash function is an O(k) operation, and hash tables have very poor cache
    locality.
  - Minimum / Maximum value lookups
  - Ordered iteration
 .
 For an immutable variant, see go-immutable-radix.
 .
 This package contains the source.