From Jason Turner

[string::op+=]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpysl40u63/{from.md → to.md} +0 -35
tmp/tmpysl40u63/{from.md → to.md} RENAMED
@@ -1,35 +0,0 @@
1
- #### `basic_string::operator+=` <a id="string::op+=">[[string::op+=]]</a>
2
-
3
- ``` cpp
4
- basic_string&
5
- operator+=(const basic_string& str);
6
- ```
7
-
8
- *Effects:* Calls `append(str)`.
9
-
10
- *Returns:* `*this`.
11
-
12
- ``` cpp
13
- basic_string& operator+=(const charT* s);
14
- ```
15
-
16
- *Effects:* Calls `append(s)`.
17
-
18
- *Returns:* `*this`.
19
-
20
- ``` cpp
21
- basic_string& operator+=(charT c);
22
- ```
23
-
24
- *Effects:* Calls `push_back(c)`;
25
-
26
- *Returns:* `*this`.
27
-
28
- ``` cpp
29
- basic_string& operator+=(initializer_list<charT> il);
30
- ```
31
-
32
- *Effects:* Calls `append(il)`.
33
-
34
- *Returns:* `*this`.
35
-