From Jason Turner

[fs.op.is_fifo]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpng23te9d/{from.md → to.md} +0 -19
tmp/tmpng23te9d/{from.md → to.md} RENAMED
@@ -1,19 +0,0 @@
1
- #### Is fifo <a id="fs.op.is_fifo">[[fs.op.is_fifo]]</a>
2
-
3
- ``` cpp
4
- bool is_fifo(file_status s) noexcept;
5
- ```
6
-
7
- *Returns:* `s.type() == file_type::fifo`.
8
-
9
- ``` cpp
10
- bool is_fifo(const path& p);
11
- bool is_fifo(const path& p, error_code& ec) noexcept;
12
- ```
13
-
14
- *Returns:* `is_fifo(status(p))` or `is_fifo(status(p, ec))`,
15
- respectively. The signature with argument `ec` returns `false` if an
16
- error occurs.
17
-
18
- *Throws:* As specified in  [[fs.err.report]].
19
-