Searched defs:compressed_pair (Results 1 – 3 of 3) sorted by relevance
/third_party/boost/boost/hof/detail/ |
D | compressed_pair.hpp | 84 struct compressed_pair<First, Second> struct 87 typedef typename pair_holder<0, First, Second>::type first_base; 88 typedef typename pair_holder<1, Second, First>::type second_base; 93 constexpr compressed_pair(X&& x, Y&& y) in compressed_pair() function 98 BOOST_HOF_INHERIT_DEFAULT(compressed_pair, first_base, second_base) in BOOST_HOF_INHERIT_DEFAULT() 107 constexpr const First& first(Xs&&... xs) const noexcept in first() 113 constexpr const Second& second(Xs&&... xs) const noexcept in second()
|
/third_party/boost/boost/detail/ |
D | compressed_pair.hpp | 349 class compressed_pair class 376 compressed_pair() : base() {} in compressed_pair() function in boost::compressed_pair 377 compressed_pair(first_param_type x, second_param_type y) : base(x, y) {} in compressed_pair() function in boost::compressed_pair 378 explicit compressed_pair(first_param_type x) : base(x) {} in compressed_pair() function in boost::compressed_pair 379 explicit compressed_pair(second_param_type y) : base(y) {} in compressed_pair() function in boost::compressed_pair 394 class compressed_pair<T, T> class 421 compressed_pair() : base() {} in compressed_pair() function in boost::compressed_pair 422 compressed_pair(first_param_type x, second_param_type y) : base(x, y) {} in compressed_pair() function in boost::compressed_pair 426 compressed_pair(first_param_type x) : base(x) {} in compressed_pair() function in boost::compressed_pair
|
D | ob_compressed_pair.hpp | 415 class compressed_pair : public detail::compressed_pair_traits<T1, T2>::type class 429 compressed_pair() : base_type() {} in compressed_pair() function in boost::compressed_pair 430 compressed_pair(first_param_type x, second_param_type y) : base_type(x, y) {} in compressed_pair() function in boost::compressed_pair 432 explicit compressed_pair(const A& x) : base_type(x){} in compressed_pair() function in boost::compressed_pair
|