|
4168 | 4168 |
|
4169 | 4169 | // \ref{ostream.formatted.print}, print functions
|
4170 | 4170 | template<class... Args>
|
4171 |
| - void print(ostream& os, @\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 4171 | + void print(ostream& os, format_string<Args...> fmt, Args&&... args); |
4172 | 4172 | template<class... Args>
|
4173 |
| - void println(ostream& os, @\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 4173 | + void println(ostream& os, format_string<Args...> fmt, Args&&... args); |
4174 | 4174 |
|
4175 | 4175 | void vprint_unicode(ostream& os, string_view fmt, format_args args);
|
4176 | 4176 | void vprint_nonunicode(ostream& os, string_view fmt, format_args args);
|
|
4222 | 4222 | namespace std {
|
4223 | 4223 | // \ref{print.fun}, print functions
|
4224 | 4224 | template<class... Args>
|
4225 |
| - void print(@\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 4225 | + void print(format_string<Args...> fmt, Args&&... args); |
4226 | 4226 | template<class... Args>
|
4227 |
| - void print(FILE* stream, @\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 4227 | + void print(FILE* stream, format_string<Args...> fmt, Args&&... args); |
4228 | 4228 |
|
4229 | 4229 | template<class... Args>
|
4230 |
| - void println(@\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 4230 | + void println(format_string<Args...> fmt, Args&&... args); |
4231 | 4231 | template<class... Args>
|
4232 |
| - void println(FILE* stream, @\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 4232 | + void println(FILE* stream, format_string<Args...> fmt, Args&&... args); |
4233 | 4233 |
|
4234 | 4234 | void vprint_unicode(string_view fmt, format_args args);
|
4235 | 4235 | void vprint_unicode(FILE* stream, string_view fmt, format_args args);
|
|
6808 | 6808 | \indexlibraryglobal{print}%
|
6809 | 6809 | \begin{itemdecl}
|
6810 | 6810 | template<class... Args>
|
6811 |
| - void print(ostream& os, @\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 6811 | + void print(ostream& os, format_string<Args...> fmt, Args&&... args); |
6812 | 6812 | \end{itemdecl}
|
6813 | 6813 |
|
6814 | 6814 | \begin{itemdescr}
|
|
6827 | 6827 | \indexlibraryglobal{println}%
|
6828 | 6828 | \begin{itemdecl}
|
6829 | 6829 | template<class... Args>
|
6830 |
| - void println(ostream& os, @\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 6830 | + void println(ostream& os, format_string<Args...> fmt, Args&&... args); |
6831 | 6831 | \end{itemdecl}
|
6832 | 6832 |
|
6833 | 6833 | \begin{itemdescr}
|
|
7700 | 7700 | \indexlibraryglobal{print}%
|
7701 | 7701 | \begin{itemdecl}
|
7702 | 7702 | template<class... Args>
|
7703 |
| - void print(@\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 7703 | + void print(format_string<Args...> fmt, Args&&... args); |
7704 | 7704 | \end{itemdecl}
|
7705 | 7705 |
|
7706 | 7706 | \begin{itemdescr}
|
|
7715 | 7715 | \indexlibraryglobal{print}%
|
7716 | 7716 | \begin{itemdecl}
|
7717 | 7717 | template<class... Args>
|
7718 |
| - void print(FILE* stream, @\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 7718 | + void print(FILE* stream, format_string<Args...> fmt, Args&&... args); |
7719 | 7719 | \end{itemdecl}
|
7720 | 7720 |
|
7721 | 7721 | \begin{itemdescr}
|
|
7734 | 7734 | \indexlibraryglobal{println}%
|
7735 | 7735 | \begin{itemdecl}
|
7736 | 7736 | template<class... Args>
|
7737 |
| - void println(@\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 7737 | + void println(format_string<Args...> fmt, Args&&... args); |
7738 | 7738 | \end{itemdecl}
|
7739 | 7739 |
|
7740 | 7740 | \begin{itemdescr}
|
|
7749 | 7749 | \indexlibraryglobal{println}%
|
7750 | 7750 | \begin{itemdecl}
|
7751 | 7751 | template<class... Args>
|
7752 |
| - void println(FILE* stream, @\exposid{format-string}@<Args...> fmt, Args&&... args); |
| 7752 | + void println(FILE* stream, format_string<Args...> fmt, Args&&... args); |
7753 | 7753 | \end{itemdecl}
|
7754 | 7754 |
|
7755 | 7755 | \begin{itemdescr}
|
|
0 commit comments