forked from HowardHinnant/date
Remove spurious Duration template parameter
* From to_stream and from_stream. * This was just a copy/paste error.
This commit is contained in:
84
d0355r3.html
84
d0355r3.html
@@ -1050,11 +1050,11 @@ template<class charT, class traits>
|
|||||||
basic_ostream<class charT, class traits>&
|
basic_ostream<class charT, class traits>&
|
||||||
operator<<(basic_ostream<class charT, class traits>& os, const day& d);
|
operator<<(basic_ostream<class charT, class traits>& os, const day& d);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const day& d);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const day& d);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
day& d, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
day& d, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -1078,11 +1078,11 @@ template<class charT, class traits>
|
|||||||
basic_ostream<class charT, class traits>&
|
basic_ostream<class charT, class traits>&
|
||||||
operator<<(basic_ostream<class charT, class traits>& os, const month& m);
|
operator<<(basic_ostream<class charT, class traits>& os, const month& m);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month& m);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month& m);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
month& m, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
month& m, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -1106,11 +1106,11 @@ template<class charT, class traits>
|
|||||||
basic_ostream<class charT, class traits>&
|
basic_ostream<class charT, class traits>&
|
||||||
operator<<(basic_ostream<class charT, class traits>& os, const year& y);
|
operator<<(basic_ostream<class charT, class traits>& os, const year& y);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year& y);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year& y);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
year& y, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
year& y, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -1130,11 +1130,11 @@ template<class charT, class traits>
|
|||||||
basic_ostream<class charT, class traits>&
|
basic_ostream<class charT, class traits>&
|
||||||
operator<<(basic_ostream<class charT, class traits>& os, const weekday& wd);
|
operator<<(basic_ostream<class charT, class traits>& os, const weekday& wd);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const weekday& wd);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const weekday& wd);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
weekday& wd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
weekday& wd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -1171,11 +1171,11 @@ template<class charT, class traits>
|
|||||||
basic_ostream<class charT, class traits>&
|
basic_ostream<class charT, class traits>&
|
||||||
operator<<(basic_ostream<class charT, class traits>& os, const month_day& md);
|
operator<<(basic_ostream<class charT, class traits>& os, const month_day& md);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month_day& md);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month_day& md);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
month_day& md, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
month_day& md, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -1233,11 +1233,11 @@ template<class charT, class traits>
|
|||||||
basic_ostream<class charT, class traits>&
|
basic_ostream<class charT, class traits>&
|
||||||
operator<<(basic_ostream<class charT, class traits>& os, const year_month& ym);
|
operator<<(basic_ostream<class charT, class traits>& os, const year_month& ym);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month& ym);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month& ym);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
year_month& ym, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
year_month& ym, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -1263,11 +1263,11 @@ template<class charT, class traits>
|
|||||||
basic_ostream<class charT, class traits>&
|
basic_ostream<class charT, class traits>&
|
||||||
operator<<(basic_ostream<class charT, class traits>& os, const year_month_day& ymd);
|
operator<<(basic_ostream<class charT, class traits>& os, const year_month_day& ymd);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month_day& ymd);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month_day& ymd);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
year_month_day& ymd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
year_month_day& ymd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -3780,11 +3780,11 @@ template <class charT, class traits>
|
|||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
operator<<(basic_ostream<charT, traits>& os, const day& d);
|
operator<<(basic_ostream<charT, traits>& os, const day& d);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const day& d);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const day& d);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
day& d, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
day& d, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -4024,7 +4024,7 @@ operator<<(basic_ostream<charT, traits>& os, const day& d);
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const day& d);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const day& d);
|
||||||
</pre>
|
</pre>
|
||||||
@@ -4041,7 +4041,7 @@ specified by [time.format].
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
day& d, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
day& d, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -4130,11 +4130,11 @@ template <class charT, class traits>
|
|||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
operator<<(basic_ostream<charT, traits>& os, const month& m);
|
operator<<(basic_ostream<charT, traits>& os, const month& m);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month& m);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month& m);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
month& m, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
month& m, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -4401,7 +4401,7 @@ output for the month field by <code>asctime</code>. Otherwise outputs
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month& m);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month& m);
|
||||||
</pre>
|
</pre>
|
||||||
@@ -4418,7 +4418,7 @@ specified by [time.format].
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
month& m, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
month& m, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -4503,11 +4503,11 @@ template <class charT, class traits>
|
|||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
operator<<(basic_ostream<charT, traits>& os, const year& y);
|
operator<<(basic_ostream<charT, traits>& os, const year& y);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year& y);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year& y);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
year& y, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
year& y, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -4799,7 +4799,7 @@ into <code>os</code>. If the year is in the range [-999, 999], prefixes the year
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year& y);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year& y);
|
||||||
</pre>
|
</pre>
|
||||||
@@ -4816,7 +4816,7 @@ specified by [time.format].
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
year& y, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
year& y, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -4922,11 +4922,11 @@ template <class charT, class traits>
|
|||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
operator<<(basic_ostream<charT, traits>& os, const weekday& wd);
|
operator<<(basic_ostream<charT, traits>& os, const weekday& wd);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const weekday& wd);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const weekday& wd);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
weekday& wd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
weekday& wd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -5205,7 +5205,7 @@ output for the weekday field by <code>asctime</code>. Otherwise outputs
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const weekday& wd);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const weekday& wd);
|
||||||
</pre>
|
</pre>
|
||||||
@@ -5222,7 +5222,7 @@ specified by [time.format].
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
weekday& wd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
weekday& wd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -5521,11 +5521,11 @@ template <class charT, class traits>
|
|||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
operator<<(basic_ostream<charT, traits>& os, const month_day& md);
|
operator<<(basic_ostream<charT, traits>& os, const month_day& md);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month_day& md);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month_day& md);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
month_day& md, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
month_day& md, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -5659,7 +5659,7 @@ return os << md.month() << '/' << md.day();
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month_day& md);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const month_day& md);
|
||||||
</pre>
|
</pre>
|
||||||
@@ -5676,7 +5676,7 @@ specified by [time.format].
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
month_day& md, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
month_day& md, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -6133,11 +6133,11 @@ template <class charT, class traits>
|
|||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
operator<<(basic_ostream<charT, traits>& os, const year_month& ym);
|
operator<<(basic_ostream<charT, traits>& os, const year_month& ym);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month& ym);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month& ym);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
year_month& ym, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
year_month& ym, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -6395,7 +6395,7 @@ return os << ym.year() << '/' << ym.month();
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month& ym);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month& ym);
|
||||||
</pre>
|
</pre>
|
||||||
@@ -6412,7 +6412,7 @@ specified by [time.format].
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
year_month& ym, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
year_month& ym, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -6499,11 +6499,11 @@ template <class charT, class traits>
|
|||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
operator<<(basic_ostream<charT, traits>& os, const year_month_day& ymd);
|
operator<<(basic_ostream<charT, traits>& os, const year_month_day& ymd);
|
||||||
|
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month_day& ymd);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month_day& ymd);
|
||||||
|
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
year_month_day& ymd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
year_month_day& ymd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
@@ -6859,7 +6859,7 @@ are prefixed with <code>'0'</code> if necessary.
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class charT, class traits, class Duration>
|
template <class charT, class traits>
|
||||||
basic_ostream<charT, traits>&
|
basic_ostream<charT, traits>&
|
||||||
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month_day& ymd);
|
to_stream(basic_ostream<charT, traits>& os, const charT* fmt, const year_month_day& ymd);
|
||||||
</pre>
|
</pre>
|
||||||
@@ -6876,7 +6876,7 @@ specified by [time.format].
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
template <class Duration, class charT, class traits, class Alloc = allocator<charT>>
|
template <class charT, class traits, class Alloc = allocator<charT>>
|
||||||
basic_istream<charT, traits>&
|
basic_istream<charT, traits>&
|
||||||
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
from_stream(basic_istream<charT, traits>& is, const charT* fmt,
|
||||||
year_month_day& ymd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
year_month_day& ymd, basic_string<charT, traits, Alloc>* abbrev = nullptr,
|
||||||
|
Reference in New Issue
Block a user