From Jason Turner

[fs.op.is.fifo]

Diff to HTML by rtfpessoa

tmp/tmpi13bf3o6/{from.md → to.md} RENAMED
@@ -1,16 +1,16 @@
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.
 
1
  #### Is fifo <a id="fs.op.is.fifo">[[fs.op.is.fifo]]</a>
2
 
3
  ``` cpp
4
+ bool filesystem::is_fifo(file_status s) noexcept;
5
  ```
6
 
7
  *Returns:* `s.type() == file_type::fifo`.
8
 
9
  ``` cpp
10
+ bool filesystem::is_fifo(const path& p);
11
+ bool filesystem::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.