#ifndef SPROUT_UTILITY_STRING_IO_HPP #define SPROUT_UTILITY_STRING_IO_HPP #include #include #include #include #include namespace sprout { // // operator<< // template inline std::basic_ostream& operator<<(std::basic_ostream& lhs, sprout::basic_string_ref const& rhs) { std::copy(rhs.begin(), rhs.end(), std::ostreambuf_iterator(lhs)); return lhs; } } // namespace sprout #endif // #ifndef SPROUT_UTILITY_STRING_IO_HPP