syncbuf_type* rdbuf() const noexcept;
概要
ベースとなるstd::basic_syncbuf
へのポインタを返す。
戻り値
ベースとなるプライベートメンバのstd::basic_syncbuf
をsb
とすると、次と等価である。 const_cast<syncbuf_type*>(std::addressof(sb));
例外
投げない。
例
#include <syncstream>
#include <iostream>
int main()
{
std::osyncstream bout(std::cout);
bout1 << "Hello, ";
auto syncbuf_ptr = bout.rdbuf();
syncbuf_ptr->emit(); // 文字が転送される
bout << "World!" << '\n';
}
xxxxxxxxxx
#include <syncstream>
#include <iostream>
int main()
{
std::osyncstream bout(std::cout);
bout1 << "Hello, ";
auto syncbuf_ptr = bout.rdbuf();
syncbuf_ptr->emit(); // 文字が転送される
bout << "World!" << '\n';
}
出力
Hello, World!
バージョン
言語
- C++20
処理系
- Clang: ??
- GCC: 11.1 ✅
- Visual C++: 2019 update 10 ✅