|
| template<size_t Idx, typename... Types> |
| EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const tuple_get_impl< Idx, Types... >::ReturnType & | Eigen::internal::tuple_impl::get (const TupleImpl< sizeof...(Types), Types... > &tuple) |
| |
| template<size_t Idx, typename... Types> |
| EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE tuple_get_impl< Idx, Types... >::ReturnType & | Eigen::internal::tuple_impl::get (TupleImpl< sizeof...(Types), Types... > &tuple) |
| |
| template<typename... Tuples, typename EnableIf = std::enable_if_t< internal::reduce_all<is_tuple<typename std::decay<Tuples>::type>::value...>::value>> |
| EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE tuple_cat_impl< sizeof...(Tuples), typename std::decay< Tuples >::type... >::ReturnType | Eigen::internal::tuple_impl::tuple_cat (Tuples &&... tuples) |
| |
| template<typename... Args, typename ReturnType = TupleImpl<sizeof...(Args), Args&...>> |
| EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ReturnType | Eigen::internal::tuple_impl::tie (Args &... args) EIGEN_NOEXCEPT |
| |
| template<typename... Args, typename ReturnType = TupleImpl<sizeof...(Args), typename unwrap_decay<Args>::type...>> |
| EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ReturnType | Eigen::internal::tuple_impl::make_tuple (Args &&... args) |
| |
| template<typename... Args> |
| EIGEN_CONSTEXPR EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TupleImpl< sizeof...(Args), Args... > | Eigen::internal::tuple_impl::forward_as_tuple (Args &&... args) |
| |