From Jason Turner

[string.view.capacity]

Diff to HTML by rtfpessoa

tmp/tmpdp1sdxmh/{from.md → to.md} RENAMED
@@ -3,20 +3,20 @@
3
  ``` cpp
4
  constexpr size_type size() const noexcept;
5
  constexpr size_type length() const noexcept;
6
  ```
7
 
8
- *Returns:* `size_`.
9
 
10
  ``` cpp
11
  constexpr size_type max_size() const noexcept;
12
  ```
13
 
14
  *Returns:* The largest possible number of char-like objects that can be
15
  referred to by a `basic_string_view`.
16
 
17
  ``` cpp
18
- [[nodiscard]] constexpr bool empty() const noexcept;
19
  ```
20
 
21
- *Returns:* `size_ == 0`.
22
 
 
3
  ``` cpp
4
  constexpr size_type size() const noexcept;
5
  constexpr size_type length() const noexcept;
6
  ```
7
 
8
+ *Returns:* *size\_*.
9
 
10
  ``` cpp
11
  constexpr size_type max_size() const noexcept;
12
  ```
13
 
14
  *Returns:* The largest possible number of char-like objects that can be
15
  referred to by a `basic_string_view`.
16
 
17
  ``` cpp
18
+ constexpr bool empty() const noexcept;
19
  ```
20
 
21
+ *Returns:* *`size_`*` == 0`.
22