#ifndef SPROUT_TUPLE_STRING_HPP #define SPROUT_TUPLE_STRING_HPP #include #include #include #include #include namespace sprout { namespace tuples { // // get // template inline SPROUT_CONSTEXPR T& get(sprout::basic_string& t) SPROUT_NOEXCEPT { static_assert(I < N, "get: index out of range"); return t[I]; } template inline SPROUT_CONSTEXPR T const& get(sprout::basic_string const& t) SPROUT_NOEXCEPT { static_assert(I < N, "get: index out of range"); return t[I]; } template inline SPROUT_CONSTEXPR T&& get(sprout::basic_string&& t) SPROUT_NOEXCEPT { return sprout::move(sprout::tuples::get(t)); } } // namespace tuples using sprout::tuples::get; } // namespace sprout #endif // #ifndef SPROUT_TUPLE_STRING_HPP