2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-06-22 10:14:21 +00:00
|
|
|
#ifndef SPROUT_PIT_TUPLE_HPP
|
|
|
|
#define SPROUT_PIT_TUPLE_HPP
|
2011-10-31 11:30:08 +00:00
|
|
|
|
|
|
|
#include <cstddef>
|
2012-06-22 10:14:21 +00:00
|
|
|
#include <tuple>
|
2011-10-31 11:30:08 +00:00
|
|
|
#include <type_traits>
|
2012-06-22 10:14:21 +00:00
|
|
|
#include <sprout/pit/pit.hpp>
|
2012-05-31 13:28:58 +00:00
|
|
|
#include <sprout/utility/move.hpp>
|
2012-09-29 09:41:13 +00:00
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
2011-10-31 11:30:08 +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::pit<Container> >::value_type&
|
|
|
|
tuple_get(sprout::pit<Container>& t) SPROUT_NOEXCEPT {
|
|
|
|
static_assert(I < sprout::container_traits<sprout::pit<Container> >::static_size, "tuple_get: index out of range");
|
|
|
|
return t[I];
|
|
|
|
}
|
|
|
|
template<std::size_t I, typename Container>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::container_traits<sprout::pit<Container> >::value_type const&
|
|
|
|
tuple_get(sprout::pit<Container> const& t) SPROUT_NOEXCEPT {
|
|
|
|
static_assert(I < sprout::container_traits<sprout::pit<Container> >::static_size, "tuple_get: index out of range");
|
|
|
|
return t[I];
|
|
|
|
}
|
|
|
|
template<std::size_t I, typename Container>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::container_traits<sprout::pit<Container> >::value_type&&
|
|
|
|
tuple_get(sprout::pit<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
|
2011-10-31 11:30:08 +00:00
|
|
|
|
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::pit<Container> >
|
|
|
|
: public std::tuple_size<Container>
|
|
|
|
{};
|
|
|
|
|
|
|
|
//
|
|
|
|
// tuple_element
|
|
|
|
//
|
|
|
|
template<std::size_t I, typename Container>
|
|
|
|
struct tuple_element<I, sprout::pit<Container> >
|
|
|
|
: public std::tuple_element<I, Container>
|
|
|
|
{};
|
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_PIT_TUPLE_HPP
|