From Jason Turner

[fs.op.is_other]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpkyriyp5r/{from.md → to.md} +0 -20
tmp/tmpkyriyp5r/{from.md → to.md} RENAMED
@@ -1,20 +0,0 @@
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.
18
-
19
- *Throws:* As specified in  [[fs.err.report]].
20
-