tmp/tmp_1meheom/{from.md → to.md}
RENAMED
|
@@ -50,12 +50,12 @@ The iterator returned from `a.insert(p, n, t)` points to the copy of the
|
|
| 50 |
first element inserted into `a`, or `p` if `n == 0`.
|
| 51 |
|
| 52 |
The iterator returned from `a.insert(p, i, j)` points to the copy of the
|
| 53 |
first element inserted into `a`, or `p` if `i == j`.
|
| 54 |
|
| 55 |
-
The iterator returned from `a.insert(p,
|
| 56 |
-
first element inserted into `a`, or `p` if `
|
| 57 |
|
| 58 |
The iterator returned from `a.emplace(p, args)` points to the new
|
| 59 |
element constructed from `args` into `a`.
|
| 60 |
|
| 61 |
The iterator returned from `a.erase(q)` points to the element
|
|
|
|
| 50 |
first element inserted into `a`, or `p` if `n == 0`.
|
| 51 |
|
| 52 |
The iterator returned from `a.insert(p, i, j)` points to the copy of the
|
| 53 |
first element inserted into `a`, or `p` if `i == j`.
|
| 54 |
|
| 55 |
+
The iterator returned from `a.insert(p, il)` points to the copy of the
|
| 56 |
+
first element inserted into `a`, or `p` if `il` is empty.
|
| 57 |
|
| 58 |
The iterator returned from `a.emplace(p, args)` points to the new
|
| 59 |
element constructed from `args` into `a`.
|
| 60 |
|
| 61 |
The iterator returned from `a.erase(q)` points to the element
|