From Jason Turner

[fs.op.is.block.file]

Diff to HTML by rtfpessoa

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