Code: Select all
template
concept Vector2 = requires (T t) { t.x; t.y; };
struct Shape
{
bool contains(const Vector2 auto&) { ... }
};
Code: Select all
struct Circle : public Shape
{
bool contains(const Vector2 auto&) const override;
};
Code: Select all
template
concept Vector2 = requires (T t) { t.x; t.y; };
struct Shape
{
bool contains(const Vector2 auto&) { ... }
};
Code: Select all
struct Circle : public Shape
{
bool contains(const Vector2 auto&) const override;
};