mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
c6bd230ee4
add container/indexes.hpp add tuple/indexes.hpp
22 lines
743 B
C++
22 lines
743 B
C++
#ifndef SPROUT_CONTAINER_DEEP_COPY_HPP
|
|
#define SPROUT_CONTAINER_DEEP_COPY_HPP
|
|
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/container/container_construct_traits.hpp>
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
namespace sprout {
|
|
//
|
|
// deep_copy
|
|
//
|
|
template<typename Container>
|
|
inline SPROUT_CONSTEXPR typename sprout::container_construct_traits<
|
|
typename std::remove_reference<Container>::type
|
|
>::copied_type deep_copy(Container&& cont) {
|
|
typedef typename std::remove_reference<Container>::type container_type;
|
|
return sprout::container_construct_traits<container_type>::deep_copy(sprout::forward<Container>(cont));
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_CONTAINER_DEEP_COPY_HPP
|