tmp/tmptazf56mi/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
##### Formatting support overview <a id="fs.path.fmtr.general">[[fs.path.fmtr.general]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
namespace std {
|
| 5 |
+
template<class charT> struct formatter<filesystem::path, charT> {
|
| 6 |
+
constexpr void set_debug_format();
|
| 7 |
+
|
| 8 |
+
constexpr typename basic_format_parse_context<charT>::iterator
|
| 9 |
+
parse(basic_format_parse_context<charT>& ctx);
|
| 10 |
+
|
| 11 |
+
template<class FormatContext>
|
| 12 |
+
typename FormatContext::iterator
|
| 13 |
+
format(const filesystem::path& path, FormatContext& ctx) const;
|
| 14 |
+
};
|
| 15 |
+
}
|
| 16 |
+
```
|
| 17 |
+
|