2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2016-02-25 09:48:28 +00:00
|
|
|
Copyright (c) 2011-2016 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>
|
2014-11-28 07:19:07 +00:00
|
|
|
#include <istream>
|
|
|
|
#include <ostream>
|
2013-02-18 17:49:10 +00:00
|
|
|
#include <sprout/config.hpp>
|
2013-10-31 09:57:41 +00:00
|
|
|
#include <sprout/algorithm/cxx14/copy.hpp>
|
2016-03-29 09:02:51 +00:00
|
|
|
#include <sprout/utility/string_view/string_view.hpp>
|
2013-02-18 17:49:10 +00:00
|
|
|
|
|
|
|
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>&
|
2016-03-29 09:02:51 +00:00
|
|
|
operator<<(std::basic_ostream<T, StreamTraits>& lhs, sprout::basic_string_view<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
|