tmp/tmpzko1b3a9/{from.md → to.md}
RENAMED
|
@@ -7,11 +7,11 @@ Unqualified function names in the *Returns:* elements of the
|
|
| 7 |
``` cpp
|
| 8 |
const filesystem::path& path() const noexcept;
|
| 9 |
operator const filesystem::path&() const noexcept;
|
| 10 |
```
|
| 11 |
|
| 12 |
-
*Returns:*
|
| 13 |
|
| 14 |
``` cpp
|
| 15 |
bool exists() const;
|
| 16 |
bool exists(error_code& ec) const noexcept;
|
| 17 |
```
|
|
@@ -155,13 +155,13 @@ file_status symlink_status(error_code& ec) const noexcept;
|
|
| 155 |
|
| 156 |
``` cpp
|
| 157 |
bool operator==(const directory_entry& rhs) const noexcept;
|
| 158 |
```
|
| 159 |
|
| 160 |
-
*Returns:* `
|
| 161 |
|
| 162 |
``` cpp
|
| 163 |
strong_ordering operator<=>(const directory_entry& rhs) const noexcept;
|
| 164 |
```
|
| 165 |
|
| 166 |
-
*Returns:* `
|
| 167 |
|
|
|
|
| 7 |
``` cpp
|
| 8 |
const filesystem::path& path() const noexcept;
|
| 9 |
operator const filesystem::path&() const noexcept;
|
| 10 |
```
|
| 11 |
|
| 12 |
+
*Returns:* *path-object*.
|
| 13 |
|
| 14 |
``` cpp
|
| 15 |
bool exists() const;
|
| 16 |
bool exists(error_code& ec) const noexcept;
|
| 17 |
```
|
|
|
|
| 155 |
|
| 156 |
``` cpp
|
| 157 |
bool operator==(const directory_entry& rhs) const noexcept;
|
| 158 |
```
|
| 159 |
|
| 160 |
+
*Returns:* *`path-object`*` == rhs.`*`path-object`*.
|
| 161 |
|
| 162 |
``` cpp
|
| 163 |
strong_ordering operator<=>(const directory_entry& rhs) const noexcept;
|
| 164 |
```
|
| 165 |
|
| 166 |
+
*Returns:* *`path-object`*` <=> rhs.`*`path-object`*.
|
| 167 |
|