#ifndef SPROUT_STRING_TO_STRING_ARRAY_HPP #define SPROUT_STRING_TO_STRING_ARRAY_HPP #include #include #include #include namespace sprout { // // to_string_array // template inline SPROUT_CONSTEXPR sprout::array to_string_array(Types&&... args) { return sprout::convert_array(sprout::to_string_value(), sprout::forward(args)...); } } // namespace sprout #endif // #ifndef SPROUT_STRING_TO_STRING_ARRAY_HPP