File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 4826
4826
\pnum
4827
4827
\returns
4828
4828
The specializations required in \tref {locale.spec }\iref {locale.category }, namely
4829
- \tcode {moneypunct<char>},
4830
- \tcode {moneypunct<\brk {}wchar_t>},
4831
- \tcode {moneypunct<char, true>},
4829
+ \begin {itemize }
4830
+ \item \tcode {moneypunct<char>},
4831
+ \item \tcode {moneypunct<wchar_t>},
4832
+ \item \tcode {moneypunct<char, true>},
4832
4833
and
4833
- \tcode {moneypunct<wchar_t, true>},
4834
+ \item \tcode {moneypunct<wchar_t, true>},
4835
+ \end {itemize }
4834
4836
return an object of type
4835
4837
\tcode {pattern}
4836
4838
initialized to
Original file line number Diff line number Diff line change 19987
19987
string s0 = format("{}", 42); // value of \tcode{s0} is \tcode{"42"}
19988
19988
string s1 = format("{0:b} {0:d} {0:o} {0:x}", 42); // value of \tcode{s1} is \tcode{"101010 42 52 2a"}
19989
19989
string s2 = format("{0:#x} {0:#X}", 42); // value of \tcode{s2} is \tcode{"0x2a 0X2A"}
19990
- string s3 = format("{:n}", 1234); // value of \tcode{s3} might be \tcode{"1,234"} (depending on the locale)
19990
+ string s3 = format("{:n}", 1234); // value of \tcode{s3} might be \tcode{"1,234"}
19991
+ // (depending on the locale)
19991
19992
\end{codeblock}
19992
19993
\end{example}
19993
19994
%
You can’t perform that action at this time.
0 commit comments