tl-expected 1.1.0-2 source package in Ubuntu

Changelog

tl-expected (1.1.0-2) unstable; urgency=medium

  * New Migrate-to-Catch2-v3.patch (Closes: #1054702)

 -- Nicholas Guriev <email address hidden>  Sat, 23 Dec 2023 12:55:48 +0300

Upload details

Uploaded by:
Nicholas Guriev
Uploaded to:
Sid
Original maintainer:
Nicholas Guriev
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

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
tl-expected_1.1.0-2.dsc 1.3 KiB b2eaa82cd28240f3bbd15bbee0e48f4cb34a79eb2b6f31689c5cab6f5dea20af
tl-expected_1.1.0.orig.tar.gz 23.2 KiB 1db357f46dd2b24447156aaf970c4c40a793ef12a8a9c2ad9e096d9801368df6
tl-expected_1.1.0-2.debian.tar.xz 3.5 KiB 63d66d2aadc5dc0cf262c7b7199ebed155bf120c41028bc610d5ecbd058e0ecb

Available diffs

No changes file available.

Binary packages built by this source

libexpected-dev: C++11/14/17 std::expected with functional-style extensions

 Single header implementation of std::expected with functional-style extensions.
 .
 std::expected is proposed as the preferred way to represent object which will
 either have an expected value, or an unexpected value giving information about
 why something failed. Unfortunately, chaining together many computations which
 may fail can be verbose, as error-checking code will be mixed in with the
 actual programming logic. This implementation provides a number of utilities to
 make coding with expected cleaner.