2012-03-31 07:24:13 +00:00
|
|
|
#ifndef SPROUT_FIXED_CONTAINER_GET_INTERNAL_HPP
|
|
|
|
#define SPROUT_FIXED_CONTAINER_GET_INTERNAL_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/container/sub_container_traits.hpp>
|
|
|
|
#include <sprout/container/internal.hpp>
|
|
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// get_internal
|
|
|
|
//
|
|
|
|
template<typename Container>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::containers::internal<Container>::type
|
|
|
|
get_internal(Container&& cont) {
|
2012-03-31 07:24:13 +00:00
|
|
|
typedef typename std::remove_reference<Container>::type container_type;
|
|
|
|
return sprout::sub_container_traits<container_type>::get_internal(sprout::forward<Container>(cont));
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_FIXED_CONTAINER_GET_INTERNAL_HPP
|