From Jason Turner

[streambuf.syn]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpz4zot60o/{from.md → to.md} +14 -0
tmp/tmpz4zot60o/{from.md → to.md} RENAMED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Header `<streambuf>` synopsis <a id="streambuf.syn">[[streambuf.syn]]</a>
2
+
3
+ ``` cpp
4
+ namespace std {
5
+ template <class charT, class traits = char_traits<charT>>
6
+ class basic_streambuf;
7
+ using streambuf = basic_streambuf<char>;
8
+ using wstreambuf = basic_streambuf<wchar_t>;
9
+ }
10
+ ```
11
+
12
+ The header `<streambuf>` defines types that control input from and
13
+ output to *character* sequences.
14
+