tmp/tmpdsjhhwqz/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
##### `path` concatenation <a id="fs.path.concat">[[fs.path.concat]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
path& operator+=(const path& x);
|
| 5 |
+
path& operator+=(const string_type& x);
|
| 6 |
+
path& operator+=(basic_string_view<value_type> x);
|
| 7 |
+
path& operator+=(const value_type* x);
|
| 8 |
+
path& operator+=(value_type x);
|
| 9 |
+
template <class Source>
|
| 10 |
+
path& operator+=(const Source& x);
|
| 11 |
+
template <class EcharT>
|
| 12 |
+
path& operator+=(EcharT x);
|
| 13 |
+
template <class Source>
|
| 14 |
+
path& concat(const Source& x);
|
| 15 |
+
```
|
| 16 |
+
|
| 17 |
+
*Effects:* Appends `path(x).native()` to the pathname in the native
|
| 18 |
+
format.
|
| 19 |
+
|
| 20 |
+
[*Note 2*: This directly manipulates the value of `native()` and may
|
| 21 |
+
not be portable between operating systems. — *end note*]
|
| 22 |
+
|
| 23 |
+
*Returns:* `*this`.
|
| 24 |
+
|
| 25 |
+
``` cpp
|
| 26 |
+
template <class InputIterator>
|
| 27 |
+
path& concat(InputIterator first, InputIterator last);
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
*Effects:* Equivalent to `return *this += path(first, last)`.
|
| 31 |
+
|