- syncstream[meta header]
- function[meta id-type]
- std[meta namespace]
- basic_osyncstream[meta class]
- cpp20[meta cpp]
streambuf_type* get_wrapped() const noexcept;
プライベートメンバのstd::basic_syncbuf
に、ラップされたstd::basic_streambuf
へのポインタを取得する。
プライベートメンバのstd::basic_syncbuf
のメンバ関数get_wrapped()
を呼び出した結果を返す。
投げない。
get_wrapped()
でラップされたストリームバッファを取得することで、それをosyncstream
で再度ラップすることができる。
#include <syncstream>
#include <iostream>
int main()
{
std::osyncstream bout1(std::cout);
bout1 << "Hello, ";
{
std::osyncstream(bout1.get_wrapped()) << "Goodbye, " << "Planet!" << '\n';
}
bout1 << "World!" << '\n';
}
- get_wrapped[color ff0000]
Goodbye, Planet!
Hello, World!
- C++20
- Clang: ??
- GCC: 11.1 [mark verified]
- Visual C++: 2019 update 10 [mark verified]