From Jason Turner

[back.insert.iter.op=]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmppm3300pj/{from.md → to.md} +0 -18
tmp/tmppm3300pj/{from.md → to.md} RENAMED
@@ -1,18 +0,0 @@
1
- ##### `back_insert_iterator::operator=` <a id="back.insert.iter.op=">[[back.insert.iter.op=]]</a>
2
-
3
- ``` cpp
4
- back_insert_iterator& operator=(const typename Container::value_type& value);
5
- ```
6
-
7
- *Effects:* As if by: `container->push_back(value);`
8
-
9
- *Returns:* `*this`.
10
-
11
- ``` cpp
12
- back_insert_iterator& operator=(typename Container::value_type&& value);
13
- ```
14
-
15
- *Effects:* As if by: `container->push_back(std::move(value));`
16
-
17
- *Returns:* `*this`.
18
-