【发布时间】:2021-05-04 15:57:01
【问题描述】:
如何正确评估概念声明/要求子句中的值?
考虑一个概念is_red,它检查给定类型是否有一个color静态cx成员设置为/*undefined*/::red,其中`/undefined/在一个枚举中;
template <typename T>
concept is_red = requires(T) {
{ T::color == decltype(T::color)::red };
};
这显然是错误的,因为它只检查合成器是否定义明确。
因此,这将无法按预期工作:
namespace apple {
enum colors{red, green, yellow };
struct granny_smith{
constexpr static auto color = colors::green;
};
}
static_assert(is_red<apple::granny_smith>); // should fail, but it does not using the previous concept implementation
在godbolt here 上查看实时示例。
这是我目前评估概念值的方式:
template <bool condition>
using if_t = std::conditional_t<condition, std::true_type, std::false_type>;
template <typename T>
concept is_red = requires(T) {
{ if_t<(T::color == decltype(T::color)::red)> } -> std::same_as<std::true_type>;
};
效果很好,但看起来有点奇怪。
也许还有另一种更简洁的方法来处理 C++ 概念中的值评估?
【问题讨论】:
标签: c++ c++20 c++-concepts