Sprout/sprout/tuple/array.hpp

37 lines
976 B
C++
Raw Normal View History

2011-10-31 08:31:03 +00:00
#ifndef SPROUT_TUPLE_ARRAY_HPP
#define SPROUT_TUPLE_ARRAY_HPP
#include <cstddef>
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/array.hpp>
namespace sprout {
namespace tuples {
//
// get
//
template<std::size_t I, typename T, std::size_t N>
inline SPROUT_CONSTEXPR T&
get(sprout::array<T, N>& t) SPROUT_NOEXCEPT {
2011-10-31 08:31:03 +00:00
static_assert(I < N, "get: index out of range");
return t[I];
}
template<std::size_t I, typename T, std::size_t N>
inline SPROUT_CONSTEXPR T const&
get(sprout::array<T, N> const& t) SPROUT_NOEXCEPT {
2011-10-31 08:31:03 +00:00
static_assert(I < N, "get: index out of range");
return t[I];
}
template<std::size_t I, typename T, std::size_t N>
inline SPROUT_CONSTEXPR T&&
get(sprout::array<T, N>&& t) SPROUT_NOEXCEPT {
return sprout::move(sprout::tuples::get<I>(t));
2011-10-31 08:31:03 +00:00
}
} // namespace tuples
using sprout::tuples::get;
2011-10-31 08:31:03 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_TUPLE_ARRAY_HPP