From Jason Turner

[range.empty]

Diff to HTML by rtfpessoa

tmp/tmplnwz3utd/{from.md → to.md} RENAMED
@@ -1,15 +1,15 @@
1
  ### Empty view <a id="range.empty">[[range.empty]]</a>
2
 
3
  #### Overview <a id="range.empty.overview">[[range.empty.overview]]</a>
4
 
5
- `empty_view` produces a `view` of no elements of a particular type.
6
 
7
  [*Example 1*:
8
 
9
  ``` cpp
10
- empty_view<int> e;
11
  static_assert(ranges::empty(e));
12
  static_assert(0 == e.size());
13
  ```
14
 
15
  — *end example*]
 
1
  ### Empty view <a id="range.empty">[[range.empty]]</a>
2
 
3
  #### Overview <a id="range.empty.overview">[[range.empty.overview]]</a>
4
 
5
+ `empty_view` produces a view of no elements of a particular type.
6
 
7
  [*Example 1*:
8
 
9
  ``` cpp
10
+ auto e = views::empty<int>;
11
  static_assert(ranges::empty(e));
12
  static_assert(0 == e.size());
13
  ```
14
 
15
  — *end example*]