std::chrono::to_stream (std::chrono::day)

From cppreference.com
< cpp‎ | chrono‎ | day
 
 
 
Date and time utilities
(C++11)
(C++11)
Clocks
(C++20)
                                                  
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Calendars
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Time zones
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
C-style date and time
 
 
template <class CharT, class Traits>

std::basic_ostream<CharT, Traits>&

to_stream(std::basic_ostream<CharT, Traits>& os, const CharT* fmt, const std::chrono::day& d);
(since C++20)

Outputs d to the stream os, formatted according to the null-terminated format string fmt.

Format string

The format string consists of zero or more conversion specifiers and ordinary characters. All ordinary characters, excluding the terminating null character, are written into the output stream without modification. Each unmodified conversion specifier begins with a % character followed by a character that determines the behavior of the specifier. Some conversion specifiers have a modified form in which an E or O modifier character is inserted after the % character. Each conversion specifier is replaced by appropriate characters in the output as described below.

A character sequence in the format string that begins with a % but does not match one of the format specifiers below is interpreted as ordinary characters.

The following format specifiers are available:

Conversion
specifier
Explanation
%% Writes a literal % character.
%n Writes a newline character.
%t Writes a horizontal tab character.
Day
%d
%Od
Writes the day of month as a decimal number. If the result is a single decimal digit, it is prefixed with 0.

The modified command %Od writes the locale's alternative representation.

%e
%Oe
Writes the day of month as a decimal number. If the result is a single decimal digit, it is prefixed with a space.

The modified command %Oe writes the locale's alternative representation.

The following specifiers are recognized, but will cause std::ios_base::failbit to be set in os:

Conversion
specifier
Explanation
Year
%C
%EC
Writes the year divided by 100 using floored division. If the result is a single decimal digit, it is prefixed with 0.

The modified command %EC writes the locale's alternative representation of the century.

%y Writes the last two decimal digits of the year. If the result is a single digit it is prefixed by 0.
%Y Writes the year as a decimal number. If the result is less than four digits it is left-padded with 0 to four digits.
Month
%b
%h
Writes the locale's abbreviated month name.
%B Writes the locale's full month name.
%m
%Om
Writes the month as a decimal number (January is 01). If the result is a single digit, it is prefixed with 0.

The modified command %Om writes the locale's alternative representation.

Day of the week
%a Writes the locale's abbreviated weekday name.
%A Writes the locale's full weekday name.
%u
%Ou
Writes the ISO weekday as a decimal number (1-7), where Monday is 1.

The modified command %Ou writes the locale's alternative representation.

%w
%Ow
Writes the weekday as a decimal number (0-6), where Sunday is 0.

The modified command %Ow writes the locale's alternative representation.

ISO 8601 week-based year

In ISO 8601 weeks begin with Monday and the first week of the year must satisfy the following requirements:

  • Includes January 4
  • Includes first Thursday of the year
%g Writes the last two decimal digits of the ISO 8601 week-based year. If the result is a single digit it is prefixed by 0.
%G Writes the ISO 8601 week-based year as a decimal number. If the result is less than four digits it is left-padded with 0 to four digits.
%V
%OV
Writes the ISO 8601 week of the year as a decimal number. If the result is a single digit, it is prefixed with 0.

The modified command %OV writes the locale's alternative representation.

Week/day of the year
%j Writes the day of the year as a decimal number (January 1 is 001). If the result is less than three digits, it is left-padded with 0 to three digits.
%U
%OU
Writes the week number of the year as a decimal number. The first Sunday of the year is the first day of week 01. Days of the same year prior to that are in week 00. If the result is a single digit, it is prefixed with 0.

The modified command %OU writes the locale's alternative representation.

%W
%OW
Writes the week number of the year as a decimal number. The first Monday of the year is the first day of week 01. Days of the same year prior to that are in week 00. If the result is a single digit, it is prefixed with 0.

The modified command %OW writes the locale's alternative representation.

Date
%D Equivalent to "%m/%d/%y".
%F Equivalent to "%Y-%m-%d".
%x
%Ex
Writes the locale's date representation.

The modified command %Ex produces the locale's alternate date representation.

Time of day
%H
%OH
Writes the hour (24-hour clock) as a decimal number. If the result is a single digit, it is prefixed with 0.

The modified command %OH writes the locale's alternative representation.

%I
%OI
Writes the hour (12-hour clock) as a decimal number. If the result is a single digit, it is prefixed with 0.

The modified command %OI writes the locale's alternative representation.

%M
%OM
Writes the minute as a decimal number. If the result is a single digit, it is prefixed with 0.

The modified command %OM writes the locale's alternative representation.

%S
%OS
Writes the second as a decimal number. If the number of seconds is less than 10, the result is prefixed with 0.

If the precision of the input cannot be exactly represented with seconds, then the format is a decimal floating point number with a fixed format and a precision matching that of the precision of the input (or to a microseconds precision if the conversion to floating point decimal seconds cannot be made within 18 fractional digits). The character for the decimal point is localized according to the locale.

The modified command %OS writes the locale's alternative representation.

%p Writes the locale's equivalent of the AM/PM designations associated with a 12-hour clock.
%R Equivalent to "%H:%M".
%T Equivalent to "%H:%M:%S".
%r Writes the locale's 12-hour clock time.
%X
%EX
Writes the locale's time representation.

The modified command %EX writes the locale's alternate time representation.

Miscellaneous
%c
%Ec
Writes the locale's date and time representation.

The modified command %Ec writes the locale's alternative date and time representation.

%z
%Ez
%Oz
Writes the offset from UTC in the ISO 8601 format. For example -0430 refers to 4 hours 30 minutes behind UTC. If the offset is zero, +0000 is used.

The modified commands %Ez and %Oz insert a : between the hours and minutes (e.g., -04:30).

%Z Writes the time zone abbreviation.

Return value

os

See also

(C++20)
formats a streamable chrono object for insertion
(function template)