robin-map 1.3.0-1 source package in Ubuntu

Changelog

robin-map (1.3.0-1) unstable; urgency=medium

  * New upstream release
  * debian/control: S-V bump 4.6.2 -> 4.7.0 (no changes needed)

 -- Matteo F. Vescovi <email address hidden>  Wed, 24 Apr 2024 21:00:11 +0200

Upload details

Uploaded by:
Matteo F. Vescovi
Uploaded to:
Sid
Original maintainer:
Matteo F. Vescovi
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
robin-map_1.3.0-1.dsc 2.0 KiB ad3dadbc6435ae8682ac3529141cbdd7bdfe3e5f490afb60946df2aa1a6de24d
robin-map_1.3.0.orig.tar.xz 56.8 KiB f673e3f86939e48b302c04d05c1df3631654d6b8ab13adf4b49e53d896dbe91d
robin-map_1.3.0-1.debian.tar.xz 2.9 KiB e98af63d308c0bec14aea2a14f8d79e5d30d02b7d30f7fb11de20f58785bb95f

Available diffs

No changes file available.

Binary packages built by this source

robin-map-dev: C++ implementation of a fast hash map and hash set

 The robin-map library is a C++ implementation of a fast hash map and
 hash set using open-addressing and linear robin hood hashing with
 backward shift deletion to resolve collisions.
 .
 Four classes are provided: tsl::robin_map, tsl::robin_set,
 tsl::robin_pg_map and tsl::robin_pg_set.
 The first two are faster and use a power of two growth policy,
 the last two use a prime growth policy instead and are able to cope
 better with a poor hash function.
 Use the prime version if there is a chance of repeating patterns in
 the lower bits of your hash (e.g. you are storing pointers with an
 identity hash function).