2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2013-04-12 15:04:01 +00:00
|
|
|
#ifndef SPROUT_TUPLE_STD_ARRAY_HPP
|
|
|
|
#define SPROUT_TUPLE_STD_ARRAY_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <array>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/utility/move.hpp>
|
2013-04-22 04:04:27 +00:00
|
|
|
#include <sprout/tuple/tuple/tuple_access_traits.hpp>
|
2013-04-12 15:04:01 +00:00
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
|
|
|
|
2013-04-22 04:04:27 +00:00
|
|
|
namespace sprout {
|
|
|
|
namespace tuples {
|
|
|
|
//
|
|
|
|
// tuple_access_traits
|
|
|
|
//
|
|
|
|
template<typename T, std::size_t N>
|
|
|
|
struct tuple_access_traits<std::array<T, N> > {
|
|
|
|
public:
|
|
|
|
template<std::size_t I>
|
|
|
|
static SPROUT_CONSTEXPR T&
|
|
|
|
tuple_get(std::array<T, N>& t) SPROUT_NOEXCEPT {
|
|
|
|
static_assert(I < N, "tuple_get: index out of range");
|
|
|
|
return t[I];
|
|
|
|
}
|
|
|
|
template<std::size_t I>
|
|
|
|
static SPROUT_CONSTEXPR T const&
|
|
|
|
tuple_get(std::array<T, N> const& t) SPROUT_NOEXCEPT {
|
|
|
|
static_assert(I < N, "tuple_get: index out of range");
|
|
|
|
return t[I];
|
|
|
|
}
|
|
|
|
template<std::size_t I>
|
|
|
|
static SPROUT_CONSTEXPR T&&
|
|
|
|
tuple_get(std::array<T, N>&& t) SPROUT_NOEXCEPT {
|
|
|
|
return sprout::move(tuple_get<I>(t));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace tuples
|
|
|
|
} // namespace sprout
|
2013-04-12 15:04:01 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_TUPLE_STD_ARRAY_HPP
|