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{});
}
|