#ifndef SPROUT_STRING_STRETCH_HPP #define SPROUT_STRING_STRETCH_HPP #include #include #include namespace sprout { // // stretch // template inline SPROUT_CONSTEXPR sprout::basic_string stretch(sprout::basic_string const& s) { return s; } template inline SPROUT_CONSTEXPR sprout::basic_string stretch(T const(& arr)[N]) { return sprout::stretch(sprout::to_string(arr)); } } // namespace sprout #endif // #ifndef SPROUT_STRING_STRETCH_HPP