namespace std {
template <class CharT, class Traits>
std::basic_ostream<CharT, Traits>&
operator<<(std::basic_ostream<CharT, Traits>& os, std::basic_string_view<CharT, Traits> sv);
}
概要
文字列をストリームへ出力する。
効果
イテレータ範囲[sv.begin(), sv.end())
の文字をos
に出力する。
戻り値
os
例
#include <iostream>
#include <string_view>
int main()
{
std::string_view sv = "Hello World";
std::cout << sv << std::endl;
std::cout << sv.substr(0, 5) << std::endl;
}
出力例
Hello World
Hello
バージョン
言語
- C++17
処理系
- Clang: 4.0 ✅
- GCC: 7.1 ✅
- ICC: ??
- Visual C++: ??