From Jason Turner

[fs.op.is.regular.file]

Diff to HTML by rtfpessoa

tmp/tmprch6z2rn/{from.md → to.md} RENAMED
@@ -1,24 +1,24 @@
1
  #### Is regular file <a id="fs.op.is.regular.file">[[fs.op.is.regular.file]]</a>
2
 
3
  ``` cpp
4
- bool is_regular_file(file_status s) noexcept;
5
  ```
6
 
7
  *Returns:* `s.type() == file_type::regular`.
8
 
9
  ``` cpp
10
- bool is_regular_file(const path& p);
11
  ```
12
 
13
  *Returns:* `is_regular_file(status(p))`.
14
 
15
  *Throws:* `filesystem_error` if `status(p)` would throw
16
  `filesystem_error`.
17
 
18
  ``` cpp
19
- bool is_regular_file(const path& p, error_code& ec) noexcept;
20
  ```
21
 
22
  *Effects:* Sets `ec` as if by `status(p, ec)`.
23
 
24
  [*Note 1*: `file_type::none`, `file_type::not_found` and
 
1
  #### Is regular file <a id="fs.op.is.regular.file">[[fs.op.is.regular.file]]</a>
2
 
3
  ``` cpp
4
+ bool filesystem::is_regular_file(file_status s) noexcept;
5
  ```
6
 
7
  *Returns:* `s.type() == file_type::regular`.
8
 
9
  ``` cpp
10
+ bool filesystem::is_regular_file(const path& p);
11
  ```
12
 
13
  *Returns:* `is_regular_file(status(p))`.
14
 
15
  *Throws:* `filesystem_error` if `status(p)` would throw
16
  `filesystem_error`.
17
 
18
  ``` cpp
19
+ bool filesystem::is_regular_file(const path& p, error_code& ec) noexcept;
20
  ```
21
 
22
  *Effects:* Sets `ec` as if by `status(p, ec)`.
23
 
24
  [*Note 1*: `file_type::none`, `file_type::not_found` and