From Jason Turner

[array.syn]

Diff to HTML by rtfpessoa

tmp/tmpmmhz24va/{from.md → to.md} RENAMED
@@ -1,14 +1,15 @@
1
  ### Header `<array>` synopsis <a id="array.syn">[[array.syn]]</a>
2
 
3
  ``` cpp
 
4
  #include <compare> // see [compare.syn]
5
  #include <initializer_list> // see [initializer.list.syn]
6
 
7
  namespace std {
8
  // [array], class template array
9
- template<class T, size_t N> struct array;
10
 
11
  template<class T, size_t N>
12
  constexpr bool operator==(const array<T, N>& x, const array<T, N>& y);
13
  template<class T, size_t N>
14
  constexpr synth-three-way-result<T>
 
1
  ### Header `<array>` synopsis <a id="array.syn">[[array.syn]]</a>
2
 
3
  ``` cpp
4
+ // mostly freestanding
5
  #include <compare> // see [compare.syn]
6
  #include <initializer_list> // see [initializer.list.syn]
7
 
8
  namespace std {
9
  // [array], class template array
10
+ template<class T, size_t N> struct array; // partially freestanding
11
 
12
  template<class T, size_t N>
13
  constexpr bool operator==(const array<T, N>& x, const array<T, N>& y);
14
  template<class T, size_t N>
15
  constexpr synth-three-way-result<T>