#ifndef SPROUT_TUPLE_STRING_HPP #define SPROUT_TUPLE_STRING_HPP #include #include #include #include #include #include namespace sprout { namespace tuples { // // get // template T& get(sprout::basic_string& t) SPROUT_NOEXCEPT { static_assert(I < N, "get: index out of range"); return t[I]; } template 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 T&& get(sprout::basic_string&& t) SPROUT_NOEXCEPT { return std::move(sprout::tuples::get(t)); } } // namespace tuples using sprout::tuples::get; } // namespace sprout #endif // #ifndef SPROUT_TUPLE_STRING_HPP