tmp/tmp8nmoleqh/{from.md → to.md}
RENAMED
|
@@ -1,17 +1,17 @@
|
|
| 1 |
#### Is other <a id="fs.op.is.other">[[fs.op.is.other]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
bool is_other(file_status s) noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:*
|
| 8 |
`exists(s) && !is_regular_file(s) && !is_directory(s) && !is_symlink(s)`.
|
| 9 |
|
| 10 |
``` cpp
|
| 11 |
-
bool is_other(const path& p);
|
| 12 |
-
bool is_other(const path& p, error_code& ec) noexcept;
|
| 13 |
```
|
| 14 |
|
| 15 |
*Returns:* `is_other(status(p))` or `is_other(status(p, ec))`,
|
| 16 |
respectively. The signature with argument `ec` returns `false` if an
|
| 17 |
error occurs.
|
|
|
|
| 1 |
#### Is other <a id="fs.op.is.other">[[fs.op.is.other]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
bool filesystem::is_other(file_status s) noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:*
|
| 8 |
`exists(s) && !is_regular_file(s) && !is_directory(s) && !is_symlink(s)`.
|
| 9 |
|
| 10 |
``` cpp
|
| 11 |
+
bool filesystem::is_other(const path& p);
|
| 12 |
+
bool filesystem::is_other(const path& p, error_code& ec) noexcept;
|
| 13 |
```
|
| 14 |
|
| 15 |
*Returns:* `is_other(status(p))` or `is_other(status(p, ec))`,
|
| 16 |
respectively. The signature with argument `ec` returns `false` if an
|
| 17 |
error occurs.
|