tl-expected 1.0.0~dfsg-1 source package in Ubuntu

Changelog

tl-expected (1.0.0~dfsg-1) unstable; urgency=low

  * Initial upload. (Closes: #949401)

 -- Nicholas Guriev <email address hidden>  Wed, 22 Jan 2020 21:51:33 +0300

Upload details

Uploaded by:
Nicholas Guriev
Uploaded to:
Sid
Original maintainer:
Nicholas Guriev
Architectures:
all
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
tl-expected_1.0.0~dfsg-1.dsc 1.9 KiB f76d421ba203e843000f8094e0acd639e41cca43108ef65b8e67b10127128164
tl-expected_1.0.0~dfsg.orig.tar.xz 19.4 KiB 643b32aea2e13650abd7b187f9623302efaa089d6058ebf8ebcb1996024bcc65
tl-expected_1.0.0~dfsg-1.debian.tar.xz 3.5 KiB 7b82574b70ad486e5751a34c6aaf704acbd6938f2293e1e7656466900d04047f

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.