#ifndef SPROUT_STRING_TUPLE_HPP #define SPROUT_STRING_TUPLE_HPP #include #include #include #include #include #include #include namespace sprout { // // tuple_get // template inline SPROUT_CONSTEXPR T& tuple_get(sprout::basic_string& t) SPROUT_NOEXCEPT { static_assert(I < N, "tuple_get: index out of range"); return t[I]; } template inline SPROUT_CONSTEXPR T const& tuple_get(sprout::basic_string const& t) SPROUT_NOEXCEPT { static_assert(I < N, "tuple_get: index out of range"); return t[I]; } template inline SPROUT_CONSTEXPR T&& tuple_get(sprout::basic_string&& t) SPROUT_NOEXCEPT { return sprout::move(sprout::tuples::get(t)); } } // namespace sprout namespace std { #if defined(__clang__) # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wmismatched-tags" #endif // // tuple_size // template struct tuple_size > : public std::integral_constant {}; // // tuple_element // template struct tuple_element > { static_assert(I < N, "tuple_element<>: index out of range"); public: typedef T type; }; #if defined(__clang__) # pragma clang diagnostic pop #endif } // namespace std #endif // #ifndef SPROUT_STRING_TUPLE_HPP