Files
2025-10-25 03:02:53 +03:00

22 lines
1.4 KiB
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[ospanstream.general]
# 31 Input/output library [[input.output]](./#input.output)
## 31.9 Span-based streams [[span.streams]](span.streams#ospanstream.general)
### 31.9.5 Class template basic_ospanstream [[ospanstream]](ospanstream#general)
#### 31.9.5.1 General [ospanstream.general]
[🔗](#lib:basic_ospanstream)
namespace std {template<class charT, class traits = char_traits<charT>>class basic_ospanstream : public basic_ostream<charT, traits> {public:using char_type = charT; using int_type = typename traits::int_type; using pos_type = typename traits::pos_type; using off_type = typename traits::off_type; using traits_type = traits; // [[ospanstream.cons]](ospanstream.cons "31.9.5.2Constructors"), constructorsexplicit basic_ospanstream(std::span<charT> s,
ios_base::openmode which = ios_base::out);
basic_ospanstream(const basic_ospanstream&) = delete;
basic_ospanstream(basic_ospanstream&& rhs);
basic_ospanstream& operator=(const basic_ospanstream&) = delete;
basic_ospanstream& operator=(basic_ospanstream&& rhs); // [[ospanstream.swap]](ospanstream.swap "31.9.5.3Swap"), swapvoid swap(basic_ospanstream& rhs); // [[ospanstream.members]](ospanstream.members "31.9.5.4Member functions"), member functions basic_spanbuf<charT, traits>* rdbuf() const noexcept;
std::span<charT> span() const noexcept; void span(std::span<charT> s) noexcept; private: basic_spanbuf<charT, traits> *sb*; // *exposition only*};}