2012-04-14 10:06:21 +00:00
|
|
|
#ifndef SPROUT_STRING_TUPLE_HPP
|
|
|
|
#define SPROUT_STRING_TUPLE_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <tuple>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/string/string.hpp>
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
//
|
|
|
|
// tuple_size
|
|
|
|
//
|
|
|
|
template<typename T, std::size_t N, typename Traits>
|
2012-05-14 06:42:54 +00:00
|
|
|
class tuple_size<sprout::basic_string<T, N, Traits> >
|
2012-04-14 10:06:21 +00:00
|
|
|
: public std::integral_constant<std::size_t, N>
|
|
|
|
{};
|
|
|
|
|
|
|
|
//
|
|
|
|
// tuple_element
|
|
|
|
//
|
|
|
|
template<std::size_t I, typename T, std::size_t N, typename Traits>
|
2012-05-14 06:42:54 +00:00
|
|
|
class tuple_element<I, sprout::basic_string<T, N, Traits> > {
|
2012-04-14 10:06:21 +00:00
|
|
|
public:
|
|
|
|
static_assert(I < N, "tuple_element<>: index out of range");
|
|
|
|
typedef T type;
|
|
|
|
};
|
|
|
|
} // namespace std
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_STRING_TUPLE_HPP
|