From Jason Turner

[bitset.syn]

Diff to HTML by rtfpessoa

tmp/tmpqqf6akfz/{from.md → to.md} RENAMED
@@ -1,10 +1,14 @@
1
  ### Header `<bitset>` synopsis <a id="bitset.syn">[[bitset.syn]]</a>
2
 
 
 
 
 
3
  ``` cpp
4
  #include <string>
5
- #include <iosfwd> // for istream ([istream.syn]), ostream ([ostream.syn]), see [iosfwd.syn]
6
 
7
  namespace std {
8
  template<size_t N> class bitset;
9
 
10
  // [bitset.operators], bitset operators
@@ -21,9 +25,5 @@ namespace std {
21
  basic_ostream<charT, traits>&
22
  operator<<(basic_ostream<charT, traits>& os, const bitset<N>& x);
23
  }
24
  ```
25
 
26
- The header `<bitset>` defines a class template and several related
27
- functions for representing and manipulating fixed-size sequences of
28
- bits.
29
-
 
1
  ### Header `<bitset>` synopsis <a id="bitset.syn">[[bitset.syn]]</a>
2
 
3
+ The header `<bitset>` defines a class template and several related
4
+ functions for representing and manipulating fixed-size sequences of
5
+ bits.
6
+
7
  ``` cpp
8
  #include <string>
9
+ #include <iosfwd> // for istream[istream.syn], ostream[ostream.syn], see [iosfwd.syn]
10
 
11
  namespace std {
12
  template<size_t N> class bitset;
13
 
14
  // [bitset.operators], bitset operators
 
25
  basic_ostream<charT, traits>&
26
  operator<<(basic_ostream<charT, traits>& os, const bitset<N>& x);
27
  }
28
  ```
29