From Jason Turner

[string.capacity]

Diff to HTML by rtfpessoa

tmp/tmpb0d11wwv/{from.md → to.md} RENAMED
@@ -5,11 +5,11 @@ size_type size() const noexcept;
5
  ```
6
 
7
  *Returns:* A count of the number of char-like objects currently in the
8
  string.
9
 
10
- *Complexity:* constant time.
11
 
12
  ``` cpp
13
  size_type length() const noexcept;
14
  ```
15
 
@@ -19,11 +19,11 @@ size_type length() const noexcept;
19
  size_type max_size() const noexcept;
20
  ```
21
 
22
  *Returns:* The size of the largest possible string.
23
 
24
- *Complexity:* constant time.
25
 
26
  ``` cpp
27
  void resize(size_type n, charT c);
28
  ```
29
 
 
5
  ```
6
 
7
  *Returns:* A count of the number of char-like objects currently in the
8
  string.
9
 
10
+ *Complexity:* Constant time.
11
 
12
  ``` cpp
13
  size_type length() const noexcept;
14
  ```
15
 
 
19
  size_type max_size() const noexcept;
20
  ```
21
 
22
  *Returns:* The size of the largest possible string.
23
 
24
+ *Complexity:* Constant time.
25
 
26
  ``` cpp
27
  void resize(size_type n, charT c);
28
  ```
29