tmp/tmpybi_qxec/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Deprecated `move_iterator` access <a id="depr.move.iter.elem">[[depr.move.iter.elem]]</a>
|
| 2 |
+
|
| 3 |
+
The following member is declared in addition to those members specified
|
| 4 |
+
in [[move.iter.elem]]:
|
| 5 |
+
|
| 6 |
+
``` cpp
|
| 7 |
+
namespace std {
|
| 8 |
+
template<class Iterator>
|
| 9 |
+
class move_iterator {
|
| 10 |
+
public:
|
| 11 |
+
constexpr pointer operator->() const;
|
| 12 |
+
};
|
| 13 |
+
}
|
| 14 |
+
```
|
| 15 |
+
|
| 16 |
+
``` cpp
|
| 17 |
+
constexpr pointer operator->() const;
|
| 18 |
+
```
|
| 19 |
+
|
| 20 |
+
*Returns:* `current`.
|
| 21 |
+
|