From Jason Turner

[fs.op.is.fifo]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpdu1s7_ov/{from.md → to.md} +19 -0
tmp/tmpdu1s7_ov/{from.md → to.md} RENAMED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+