From Jason Turner

[depr.format.arg]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp66d03mv9/{from.md → to.md} +10 -0
tmp/tmp66d03mv9/{from.md → to.md} RENAMED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Formatting arguments <a id="depr.format.arg">[[depr.format.arg]]</a>
2
+
3
+ ``` cpp
4
+ template<class Visitor, class Context>
5
+ decltype(auto) visit_format_arg(Visitor&& vis, basic_format_arg<Context> arg);
6
+ ```
7
+
8
+ *Effects:* Equivalent to:
9
+ `return visit(std::forward<Visitor>(vis), arg.value);`
10
+