gpt4 book ai didi

c++ - 如何在编译时找出 integer_sequence 是否包含给定的数字?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:55:27 25 4
gpt4 key购买 nike

给定:

typedef std::integer_sequence<int, 0,4,7> allowed_args_t;

和:

template<int arg> void foo()
{
static_assert( /*fire if arg not in allowed_args_t!*/ )
}

我应该如何编写 static_assert 以使其在编译时尽可能便宜?

我正在使用 C++17。

最佳答案

你可能想使用:

template <int ... Is>
constexpr bool is_in(int i, std::integer_sequence<int, Is...>)
{
return ((i == Is) || ...);
}


typedef std::integer_sequence<int, 0, 4, 7> allowed_args_t;


template<int arg> void foo()
{
static_assert(is_in(arg, allowed_args_t{}));
}

关于c++ - 如何在编译时找出 integer_sequence 是否包含给定的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52304068/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com