File: control

package info (click to toggle)
tl-expected 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 388 kB
  • sloc: cpp: 3,504; makefile: 6
file content (25 lines) | stat: -rw-r--r-- 1,086 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Source: tl-expected
Section: libdevel
Priority: optional
Maintainer: Nicholas Guriev <guriev-ns@ya.ru>
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: catch2 (>= 3.0.1) <!nocheck>, cmake (>= 3.14)
Standards-Version: 4.6.1
Rules-Requires-Root: no
Homepage: https://tl.tartanllama.xyz/
Vcs-Git: https://salsa.debian.org/debian/tl-expected.git
Vcs-Browser: https://salsa.debian.org/debian/tl-expected

Package: libexpected-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Description: 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.