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
|
template <typename Type>
concept bool Addable =
requires(Type lh, Type rh)
{
lh + rh;
};
template <typename Type>
concept bool Constraint() // function concept
{
return
requires(Type lhs, Type rhs)
{
{ lhs < rhs } -> bool; // multiple
lhs + rhs; // constraints
// typename Type::value_type;
};
}
template <typename Type>
concept bool Constraint2 = // variable concept
requires(Type lhs, Type rhs)
{
// { operator<(lhs, rhs) } -> bool; // both OK
{ lhs < rhs } -> bool;
lhs + rhs;
typename Type::value_type;
};
// template <typename Type> concept bool Constraint = true ;
struct Combi
{
typedef int value_type;
};
bool operator<(Combi const &lhs, Combi const &rhs);
Combi operator+(Combi const &lhs, Combi const &rhs);
template <typename Type>
struct Data
{ // constraint applies only to a member
void process() requires Addable<Type>;
template <Addable Tp>
void add(Tp tp);
};
template <typename Typ> // formal type names may differ
void Data<Typ>::process() requires Addable<Typ> // from the class.
{}
template <typename Typ> // formal type names may differ
template <Addable Tp>
void Data<Typ>::add(Tp tp)
{}
int main()
{
Data<Combi>{}.process();
}
|