2013-02-18 17:49:10 +00:00
|
|
|
#ifndef SPROUT_UTILITY_STRING_IO_HPP
|
|
|
|
#define SPROUT_UTILITY_STRING_IO_HPP
|
|
|
|
|
2013-04-08 08:45:03 +00:00
|
|
|
#include <iterator>
|
|
|
|
#include <algorithm>
|
2013-02-18 17:49:10 +00:00
|
|
|
#include <ios>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/utility/string_ref/string_ref.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// operator<<
|
|
|
|
//
|
|
|
|
template<typename T, typename Traits, typename StreamTraits>
|
|
|
|
inline std::basic_ostream<T, StreamTraits>&
|
|
|
|
operator<<(std::basic_ostream<T, StreamTraits>& lhs, sprout::basic_string_ref<T, Traits> const& rhs) {
|
2013-04-08 08:45:03 +00:00
|
|
|
std::copy(rhs.begin(), rhs.end(), std::ostreambuf_iterator<T, StreamTraits>(lhs));
|
|
|
|
return lhs;
|
2013-02-18 17:49:10 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_STRING_IO_HPP
|