我有一个constexpr
函数,可以为设计合约分组许多static_asserts
。我想在编译时调用它,而不必创建一个未使用的constexpr
变量。
这是我目前要做的一个例子(c ++ 17)。
template<size_t N = 0, typename... Ts, typename F>
inline constexpr int tuple_for(const std::tuple<Ts...>& t, const F& func) {
func(std::get<N>(t));
if constexpr(N < sizeof...(Ts) - 1) {
return tuple_for<N + 1, Ts...>(t, func);
} else {
return 0;
}
}
auto do_checks = [](const auto& t) {
static_assert(has_some_method_v<decltype(t)>,
"You need some_method");
return 0;
}
[[maybe_unused]]
constexpr int i_am_sad = tuple_for(my_tuple, do_checks);
有没有其他方法可以实现这种行为?也许是c ++ 17中的新东西?
谢谢。
编辑: 请注意,由于这些检查是一般化的,我认为在函数中使用断言是正确的方法。
答案 0 :(得分:2)
您可以在其他constexpr上下文中将其用作static_assert
:
static_assert((static_cast<void>(tuple_for(my_tuple, do_checks)), true), "!");
[注意]:如果你想用邪恶的重载逗号返回类,那么转换为void
就是概括。
答案 1 :(得分:0)
static_assert
是声明声明,因此您可以在自由空间中进行拼接。
不需要功能。
这正是用例。 :)