From Jason Turner

[print.syn]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp8w8u9hqz/{from.md → to.md} +23 -0
tmp/tmp8w8u9hqz/{from.md → to.md} RENAMED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Header `<print>` synopsis <a id="print.syn">[[print.syn]]</a>
2
+
3
+ ``` cpp
4
+ namespace std {
5
+ // [print.fun], print functions
6
+ template<class... Args>
7
+ void print(format_string<Args...> fmt, Args&&... args);
8
+ template<class... Args>
9
+ void print(FILE* stream, format_string<Args...> fmt, Args&&... args);
10
+
11
+ template<class... Args>
12
+ void println(format_string<Args...> fmt, Args&&... args);
13
+ template<class... Args>
14
+ void println(FILE* stream, format_string<Args...> fmt, Args&&... args);
15
+
16
+ void vprint_unicode(string_view fmt, format_args args);
17
+ void vprint_unicode(FILE* stream, string_view fmt, format_args args);
18
+
19
+ void vprint_nonunicode(string_view fmt, format_args args);
20
+ void vprint_nonunicode(FILE* stream, string_view fmt, format_args args);
21
+ }
22
+ ```
23
+