From Jason Turner

[fs.op.is_symlink]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpsxp4_qms/{from.md → to.md} +0 -19
tmp/tmpsxp4_qms/{from.md → to.md} RENAMED
@@ -1,19 +0,0 @@
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.
17
-
18
- *Throws:* As specified in  [[fs.err.report]].
19
-