tmp/tmpyt0ruzun/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Deprecated filesystem path format observers <a id="depr.fs.path.obs">[[depr.fs.path.obs]]</a>
|
| 2 |
+
|
| 3 |
+
The following members are declared in addition to those members
|
| 4 |
+
specified in [[fs.path.member]]:
|
| 5 |
+
|
| 6 |
+
``` cpp
|
| 7 |
+
namespace std::filesystem {
|
| 8 |
+
class path {
|
| 9 |
+
public:
|
| 10 |
+
std::string string() const;
|
| 11 |
+
std::string generic_string() const;
|
| 12 |
+
};
|
| 13 |
+
}
|
| 14 |
+
```
|
| 15 |
+
|
| 16 |
+
``` cpp
|
| 17 |
+
std::string string() const;
|
| 18 |
+
```
|
| 19 |
+
|
| 20 |
+
*Returns:* `system_encoded_string()`.
|
| 21 |
+
|
| 22 |
+
``` cpp
|
| 23 |
+
std::string generic_string() const;
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
*Returns:* `generic_system_encoded_string()`.
|
| 27 |
+
|