本文整理汇总了C++中tuple类的典型用法代码示例。如果您正苦于以下问题:C++ tuple类的具体用法?C++ tuple怎么用?C++ tuple使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了tuple类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: tuple
tuple(const tuple<VValues...>& other)
: m_head(other.head()), inherited(other.tail())
{}
示例2: get
static type get(tuple<Head, Values...>& t) { return t.head(); }
示例3: numgt1
inline ISAACAPI size_t numgt1(tuple const & tp)
{ return std::accumulate(tp.begin(), tp.end(), 0, [](size_t a, size_t b){ return a + (b>1); }); }
示例4: decltype
constexpr decltype(auto) get(tuple<T...> const& ts) {
return *ts.unpack_into(get_impl<n>{});
}
示例5: min
inline ISAACAPI int_t min(tuple const & tp)
{ return std::accumulate(tp.begin(), tp.end(), std::numeric_limits<int_t>::max(), [](int_t a, int_t b){ return std::min(a, b); }); }
示例6: prod
inline ISAACAPI int_t prod(tuple const & tp)
{ return std::accumulate(tp.begin(), tp.end(), 1, std::multiplies<int>()); }
示例7:
bool operator==(const tuple<T, TTail...>& t, const tuple<U, UTail...>& u)
{
return t.head() == u.head() && t.tail() == u.tail();
}
示例8: return
bool operator<(const tuple<T, TTail...>& t, const tuple<U, UTail...>& u)
{
return (t.head() < u.head() ||
(!(t.head() < u.head()) && t.tail() < u.tail()));
}
示例9: get
static PJ get(const tuple<Head, Values...>& t) { return t.head(); }
示例10: get
std::enable_if_t<!ndt::traits<tuple_element_t<I, tuple<T...>>>::is_same_layout, tuple_element_t<I, tuple<T...>>>
get(const tuple<T...> &val) {
return tuple_element_t<I, tuple<T...>>(val.metadata() + sizeof...(T) * sizeof(uintptr_t),
val.data() + val.template offset<I>());
}
示例11: to_std_tuple
std::tuple<A,B...> to_std_tuple(){
return std::tuple_cat(std::make_tuple(a),rest.to_std_tuple());
}
示例12: operator
bool operator()(const tuple<Alloc>& a) const { return a.match(m_pattern, m_binding); }