|
std::tuple< Ts... > const & | base () const noexcept |
|
std::tuple< Ts... > & | base () noexcept |
|
template<typename... Us> |
| common_tuple (common_tuple< Us... > &&that) noexcept(meta::and_c< std::is_nothrow_constructible< Ts, Us >::value... >::value) |
|
template<typename... Us> |
| common_tuple (common_tuple< Us... > &that) noexcept(meta::and_c< std::is_nothrow_constructible< Ts, Us & >::value... >::value) |
|
template<typename... Us> |
| common_tuple (common_tuple< Us... > const &that) noexcept(meta::and_c< std::is_nothrow_constructible< Ts, Us const & >::value... >::value) |
|
template<typename... Us> |
| common_tuple (std::tuple< Us... > &&that) noexcept(meta::and_c< std::is_nothrow_constructible< Ts, Us >::value... >::value) |
|
template<typename... Us> |
| common_tuple (std::tuple< Us... > &that) noexcept(meta::and_c< std::is_nothrow_constructible< Ts, Us & >::value... >::value) |
|
template<typename... Us> |
| common_tuple (std::tuple< Us... > const &that) noexcept(meta::and_c< std::is_nothrow_constructible< Ts, Us const & >::value... >::value) |
|
template<typename... Us> |
| common_tuple (Us &&... us) noexcept(meta::and_c< std::is_nothrow_constructible< Ts, Us >::value... >::value) |
|
template<typename... Us> |
| operator std::tuple< Us... > () &&noexcept(meta::and_c< std::is_nothrow_constructible< Us, Ts >::value... >::value) |
|
template<typename... Us> |
| operator std::tuple< Us... > () &noexcept(meta::and_c< std::is_nothrow_constructible< Us, Ts & >::value... >::value) |
|
template<typename... Us> |
| operator std::tuple< Us... > () const &noexcept(meta::and_c< std::is_nothrow_constructible< Us, Ts const & >::value... >::value) |
|
template<typename... Us> |
common_tuple const & | operator= (std::tuple< Us... > &&that) const noexcept(meta::and_c< std::is_nothrow_assignable< Ts const &, Us && >::value... >::value) |
|
template<typename... Us> |
common_tuple & | operator= (std::tuple< Us... > &&that) noexcept(meta::and_c< std::is_nothrow_assignable< Ts &, Us >::value... >::value) |
|
template<typename... Us> |
common_tuple const & | operator= (std::tuple< Us... > &that) const noexcept(meta::and_c< std::is_nothrow_assignable< Ts const &, Us & >::value... >::value) |
|
template<typename... Us> |
common_tuple & | operator= (std::tuple< Us... > &that) noexcept(meta::and_c< std::is_nothrow_assignable< Ts &, Us & >::value... >::value) |
|
template<typename... Us> |
common_tuple const & | operator= (std::tuple< Us... > const &that) const noexcept(meta::and_c< std::is_nothrow_assignable< Ts const &, Us const & >::value... >::value) |
|
template<typename... Us> |
common_tuple & | operator= (std::tuple< Us... > const &that) noexcept(meta::and_c< std::is_nothrow_assignable< Ts &, Us const & >::value... >::value) |
|