mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
33 lines
1,013 B
C++
33 lines
1,013 B
C++
|
#ifndef SPROUT_TUPLE_STRING_HPP
|
||
|
#define SPROUT_TUPLE_STRING_HPP
|
||
|
|
||
|
#include <cstddef>
|
||
|
#include <type_traits>
|
||
|
#include <sprout/config.hpp>
|
||
|
#include <sprout/tuple/tuple.hpp>
|
||
|
#include <sprout/string.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
namespace tuples {
|
||
|
//
|
||
|
// get
|
||
|
//
|
||
|
template<std::size_t I, typename T, std::size_t N, typename Traits>
|
||
|
T& get(sprout::basic_string<T, N, Traits>& t) SPROUT_NOEXCEPT {
|
||
|
static_assert(I < N, "get: index out of range");
|
||
|
return t[I];
|
||
|
}
|
||
|
template<std::size_t I, typename T, std::size_t N, typename Traits>
|
||
|
SPROUT_CONSTEXPR T const& get(sprout::basic_string<T, N, Traits> const& t) SPROUT_NOEXCEPT {
|
||
|
static_assert(I < N, "get: index out of range");
|
||
|
return t[I];
|
||
|
}
|
||
|
template<std::size_t I, typename T, std::size_t N, typename Traits>
|
||
|
T&& get(sprout::basic_string<T, N, Traits>&& t) SPROUT_NOEXCEPT {
|
||
|
return std::move(sprout::tuples::get<I>(t));
|
||
|
}
|
||
|
} // namespace tuples
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_TUPLE_STRING_HPP
|