2012-06-22 10:14:21 +00:00
|
|
|
#ifndef SPROUT_SUB_ARRAY_TUPLE_HPP
|
|
|
|
#define SPROUT_SUB_ARRAY_TUPLE_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <tuple>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
|
|
|
#include <sprout/utility/move.hpp>
|
|
|
|
#include <sprout/sub_array/sub_array.hpp>
|
|
|
|
#include <sprout/sub_array/container.hpp>
|
2012-09-29 09:41:13 +00:00
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
2012-06-22 10:14:21 +00:00
|
|
|
|
2012-10-05 15:58:56 +00:00
|
|
|
namespace sprout {
|
2012-09-29 09:41:13 +00:00
|
|
|
//
|
|
|
|
// tuple_get
|
|
|
|
//
|
|
|
|
template<std::size_t I, typename Container>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::container_traits<sprout::sub_array<Container> >::value_type&
|
|
|
|
tuple_get(sprout::sub_array<Container>& t)
|
2012-10-05 15:58:56 +00:00
|
|
|
SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(*sprout::next(sprout::internal_begin(t), I)))
|
2012-09-29 09:41:13 +00:00
|
|
|
{
|
|
|
|
static_assert(I < sprout::container_traits<sprout::sub_array<Container> >::static_size, "tuple_get: index out of range");
|
|
|
|
return *sprout::next(sprout::internal_begin(t), I);
|
|
|
|
}
|
|
|
|
template<std::size_t I, typename Container>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::container_traits<sprout::sub_array<Container> >::value_type const&
|
|
|
|
tuple_get(sprout::sub_array<Container> const& t)
|
2012-10-05 15:58:56 +00:00
|
|
|
SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(*sprout::next(sprout::internal_begin(t), I)))
|
2012-09-29 09:41:13 +00:00
|
|
|
{
|
|
|
|
static_assert(I < sprout::container_traits<sprout::sub_array<Container> >::static_size, "tuple_get: index out of range");
|
|
|
|
return *sprout::next(sprout::internal_begin(t), I);
|
|
|
|
}
|
|
|
|
template<std::size_t I, typename Container>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::container_traits<sprout::sub_array<Container> >::value_type&&
|
|
|
|
tuple_get(sprout::sub_array<Container>&& t)
|
2012-10-05 15:58:56 +00:00
|
|
|
SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(sprout::move(sprout::tuples::get<I>(t))))
|
2012-09-29 09:41:13 +00:00
|
|
|
{
|
|
|
|
return sprout::move(sprout::tuples::get<I>(t));
|
|
|
|
}
|
2012-10-05 15:58:56 +00:00
|
|
|
} // namespace sprout
|
2012-06-22 10:14:21 +00:00
|
|
|
|
|
|
|
namespace std {
|
2012-11-15 09:36:55 +00:00
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic push
|
|
|
|
# pragma clang diagnostic ignored "-Wmismatched-tags"
|
|
|
|
#endif
|
2012-06-22 10:14:21 +00:00
|
|
|
//
|
|
|
|
// tuple_size
|
|
|
|
//
|
|
|
|
template<typename Container>
|
|
|
|
struct tuple_size<sprout::sub_array<Container> >
|
|
|
|
: public std::tuple_size<typename std::remove_reference<Container>::type>
|
|
|
|
{};
|
|
|
|
|
|
|
|
//
|
|
|
|
// tuple_element
|
|
|
|
//
|
|
|
|
template<std::size_t I, typename Container>
|
|
|
|
struct tuple_element<I, sprout::sub_array<Container> >
|
|
|
|
: public std::tuple_element<I, typename std::remove_reference<Container>::type>
|
|
|
|
{};
|
2012-11-15 09:36:55 +00:00
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic pop
|
|
|
|
#endif
|
2012-06-22 10:14:21 +00:00
|
|
|
} // namespace std
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_SUB_ARRAY_TUPLE_HPP
|