operator<<(std::experimental::basic_string_view)

From cppreference.com
 
 
Technical specifications
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals 2 TS)
Extensions for parallelism (parallelism TS)
Concepts (concepts TS)
Extensions for concurrency (concurrency TS)
 
 
 
Defined in header <experimental/string_view>
template <class CharT, class Traits>

std::basic_ostream<CharT, Traits>&
    operator<<(std::basic_ostream<CharT, Traits>& os,

               std::basic_string_view <CharT, Traits> v);
(library fundamentals TS)

Equivalent to os << v.to_string().

[edit] Parameters

os - a character output stream
v - the view to be inserted

[edit] Return value

os