From Jason Turner

[fs.op.is.symlink]

Diff to HTML by rtfpessoa

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