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 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
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 <Constraint Type>
struct Data
{
void process();
};
// template <Constraint X> // Constraint may or may not be specified
template <typename X> // as the constraints are implied by Data
void Data<X>::process() // the formal typename may also be different
{}
template <Constraint2 Type>
struct Data2
{
void process();
};
template <Constraint2 X> // Constraint must be specified,
void Data2<X>::process() // but the formal type name
{ // doesn't have to be Type
int x = 0;
int y = x;
x = y << 1;
}
template <Constraint2 Type>
struct Data3
{
void process();
};
template <Constraint2 X> // Constraint must be specified,
void Data3<X>::process() // but the formal type name
{ // doesn't have to be Type
int x = 0;
int y = x;
x = y << 1;
}
int main()
{
Data<Combi>{}.process();
Data2<Combi>{}.process();
}
|