File: oneparam.yo

package info (click to toggle)
c%2B%2B-annotations 11.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 11,244 kB
  • sloc: cpp: 21,698; makefile: 1,505; ansic: 165; sh: 121; perl: 90
file content (66 lines) | stat: -rw-r--r-- 2,596 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
The following concepts specify just one template type parameter. Their generic
form is 
    verb(    template <typename Type>
    concept Name = 
        ... requirements ...
        ;)
    When used in compound requirements only their names have to be
specified. For example (using the concept tt(std::boolean) (see below)), to
require that a function tt(fun) receiving an argument of some type tt(Type)
returns a boolean value, the following concept could be defined:
        verb(template<typename Type>
    concept BoolFun = 
        requires(Type param)
        {
            { fun(param) } -> std::boolean;
        };)

itemization(
ittq(boolean)(requires that its type can be used in boolean expressions)

ittq(copy_constructible)(requires that objects of its type supports copy- and
    move-construction;)

ittq(copyable)(requires that objects of its type support copy- and move-
    construction and assignment, and that two objects of its type can be
    swapped;) 

ittq(default_initializable)(requires that objects of its type support default
    constructors;) 

ittq(destructible)(requires that the destructor of its type is defined as
    tt(noexcept(true));)

ittq(equality_comparable)(requires that tt(operator==) is available to compare
    two objects of its type;)

ittq(floating_point)(requires that its type is a floating-point type;)

ittq(integral)(requires that its type is an integral  type;)

ittq(movable)(requires that its type supports moving and swapping. Note that
    full support for moving requires that its type supports move construction
    and move assignment;)

ittq(move_constructible)(requires that its type supports move construction;)

ittq(regular)(requires that its type satisfies the requirements of the
    tt(semiregular) and tt(equality_comparable) concepts;)

ittq(semiregular)(requires that its type supports default construction,
    copying, moving, and swapping;)

ittq(signed_integral)(requires that its type is a signed integral type;)

ittq(swappable)(requires that two objects of the same type can be swapped. The
    generic variant (see below) is named tt(swappable_with);)

ittq(unsigned_integral)(requires that its type is an unsigned integral type;)

ittq(totally_ordered)(requires that two objects of identical
    types can be ordered using the operators tt(==, !=, <, <=, >,) and
    tt(>=). The requirements for ordering is hi(ordering: strict)em(strict):
    for any two objects tt(one) and tt(two) either tt(one < two, one == two,)
    or tt(one > two) is true. The generic variant is named
    tt(totally_ordered_width).)
)