2016-03-02 11:43:05 +01:00
|
|
|
#include <iterator>
|
|
|
|
|
#include <ostream>
|
|
|
|
|
|
|
|
|
|
#include <opm/parser/eclipse/Utility/Stringview.hpp>
|
|
|
|
|
|
2016-03-14 13:28:51 +01:00
|
|
|
std::ostream& Opm::operator<<( std::ostream& stream, const Opm::string_view& view ) {
|
2016-03-02 11:43:05 +01:00
|
|
|
std::copy( view.begin(), view.end(), std::ostream_iterator< char >( stream ) );
|
|
|
|
|
return stream;
|
|
|
|
|
}
|