2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
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>
|
2013-02-18 17:49:10 +00:00
|
|
|
#include <ios>
|
|
|
|
#include <sprout/config.hpp>
|
2013-10-31 09:57:41 +00:00
|
|
|
#include <sprout/algorithm/cxx14/copy.hpp>
|
2013-02-18 17:49:10 +00:00
|
|
|
#include <sprout/utility/string_ref/string_ref.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// operator<<
|
|
|
|
//
|
|
|
|
template<typename T, typename Traits, typename StreamTraits>
|
2013-11-02 09:28:18 +00:00
|
|
|
inline SPROUT_NON_CONSTEXPR std::basic_ostream<T, StreamTraits>&
|
2013-02-18 17:49:10 +00:00
|
|
|
operator<<(std::basic_ostream<T, StreamTraits>& lhs, sprout::basic_string_ref<T, Traits> const& rhs) {
|
2013-10-31 09:57:41 +00:00
|
|
|
sprout::copy(rhs.begin(), rhs.end(), std::ostreambuf_iterator<T, StreamTraits>(lhs));
|
2013-04-08 08:45:03 +00:00
|
|
|
return lhs;
|
2013-02-18 17:49:10 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_STRING_IO_HPP
|