File: inputiter.cc

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 (53 lines) | stat: -rw-r--r-- 865 bytes parent folder | download | duplicates (3)
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
#include <utility>
#include <concepts>
#include <string>

template <typename Type>
concept ConstDereferenceable =
    requires(Type type)
    {
        { *type } -> std::same_as<int const &>;
//        { *type } -> std::convertible_to<int const &>;
    };
//=

template <typename Type>
concept Dereferenceable =
    requires(Type type)
    {
        { *type } -> std::same_as<int &>;
    };

//iterable
struct Iterable
{
    Iterable &operator++();
    Iterable operator++(int);

    int const &operator*() const;
    int &operator*();
};
//=

template <typename Type>
concept InIterator =
    ConstDereferenceable<Type>;

template <InIterator Type>
void inFun(Type tp)
{}


template <typename Type>
concept OutIterator =
    Dereferenceable<Type>;

template <OutIterator Type>
void outFun(Type tp)
{}

int main()
{
    inFun(Iterable{});
    outFun(Iterable{});
}