/*============================================================================= Copyright (c) 2011-2013 Bolero MURAKAMI 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) =============================================================================*/ #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