作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在考虑编写一个既适用于序列又适用于关联容器的函数。这就像
template<class C, class V = typename C::key_type>
bool has_val(const C& c, const V& v)`
在函数内部,我想
const_iterator find(key_type) const
对于像 set/map 这样的容器类。 std::find()
对于序列容器,如 std::vector
. FOLLY_create_member_invoker
访问较新的 Folly,但我确实有
FOLLY_CREATE_HAS_MEMBER_FN_TRAITS
。不过,我无法成功通过)
最佳答案
使用SFINAE检测是否使用c.find()
:
#include <algorithm>
template <class C, class V, typename = void>
constexpr inline bool use_mem_find = false;
template <class C, class V>
constexpr inline bool use_mem_find<C, V,
std::void_t<decltype(std::declval<const C&>().find(std::declval<const V&>()))>> = true;
template<class C, class V>
bool has_val(const C& c, const V& v) {
auto end = std::end(c);
if constexpr (use_mem_find<C, V>)
return c.find(v) != end;
else
return std::find(std::begin(c), end, v) != end;
}
Demo.
关于c++ - 如何为序列和关联容器实现通用功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69386540/
我是一名优秀的程序员,十分优秀!