frozen 1.1.1-3 source package in Ubuntu

Changelog

frozen (1.1.1-3) unstable; urgency=medium

  * debian/patches/no-werror.diff: don't use -Werror
  * debian/patches/cstdint.diff: add missing #include <cstdint> to fix
    build of the tests with gcc 13 

 -- Rene Engelhard <email address hidden>  Mon, 24 Jul 2023 22:02:12 +0000

Upload details

Uploaded by:
Rene Engelhard
Uploaded to:
Sid
Original maintainer:
Rene Engelhard
Architectures:
all
Section:
misc
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

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
frozen_1.1.1-3.dsc 1.7 KiB 876df9351d9db3da31a42564c537f0d5959e26e5cbcac1727d4375167af78be5
frozen_1.1.1.orig.tar.gz 182.2 KiB f7c7075750e8fceeac081e9ef01944f221b36d9725beac8681cbd2838d26be45
frozen_1.1.1-3.debian.tar.xz 3.5 KiB 1ed0acaeb74a018c5638e343b8a1e63a03aa109c23fa1181f0641091ed7dc189

No changes file available.

Binary packages built by this source

libfrozen-dev: library for immutable and fixed-size containers

 Header-only library that provides 0 cost initialization for immutable
 containers, fixed-size containers, and various algorithms.
 .
 Frozen provides:
 .
  - immutable (a.k.a. frozen), constexpr-compatible versions of std::set,
    std::unordered_set, std::map and std::unordered_map.
  - fixed-capacity, constinit-compatible versions of std::map and
    std::unordered_map with immutable, compile-time selected keys mapped to
    mutable values.
  - 0-cost initialization version of std::search for frozen needles using
   Boyer-Moore or Knuth-Morris-Pratt algorithms.
 .
 The unordered_* containers are guaranteed perfect (a.k.a. no hash collision)
 and the extra storage is linear with respect to the number of keys.
 .
 Once initialized, the container keys cannot be updated, and in exchange,
 lookups are faster.
 .
 This package contains the necessary headers.