From Jason Turner

[range.empty.overview]

Diff to HTML by rtfpessoa

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