Sprout/sprout/utility/string_ref/io.hpp
bolero-MURAKAMI 1ef8a6a63b add sprout::string_ref
support conversion array-like container iterator to pointer
2013-02-19 02:49:10 +09:00

19 lines
546 B
C++

#ifndef SPROUT_UTILITY_STRING_IO_HPP
#define SPROUT_UTILITY_STRING_IO_HPP
#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) {
return lhs << rhs.c_str();
}
} // namespace sprout
#endif // #ifndef SPROUT_UTILITY_STRING_IO_HPP