2012-03-31 07:24:13 +00:00
|
|
|
#ifndef SPROUT_TUPLE_DEEP_COPY_HPP
|
|
|
|
#define SPROUT_TUPLE_DEEP_COPY_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/tuple/traits.hpp>
|
|
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace tuples {
|
|
|
|
//
|
|
|
|
// deep_copy
|
|
|
|
//
|
|
|
|
template<typename Tuple>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_construct_traits<
|
2012-03-31 07:24:13 +00:00
|
|
|
typename std::remove_reference<Tuple>::type
|
2012-10-06 04:53:07 +00:00
|
|
|
>::copied_type
|
|
|
|
deep_copy(Tuple&& tup) {
|
2012-03-31 07:24:13 +00:00
|
|
|
typedef typename std::remove_reference<Tuple>::type tuple_type;
|
|
|
|
return sprout::tuples::tuple_construct_traits<tuple_type>::deep_copy(sprout::forward<Tuple>(tup));
|
|
|
|
}
|
|
|
|
} // namespace tuples
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_TUPLE_DEEP_COPY_HPP
|