| Localization library | |||||||||||||||||||||||||
| Regular expressions library(C++11) | |||||||||||||||||||||||||
| Formatting library(C++20) | |||||||||||||||||||||||||
| Null-terminated sequence utilities | |||||||||||||||||||||||||
| Byte strings | |||||||||||||||||||||||||
| Multibyte strings | |||||||||||||||||||||||||
| Wide strings | |||||||||||||||||||||||||
| Primitive numeric conversions | |||||||||||||||||||||||||
| |||||||||||||||||||||||||
| Text encoding identifications | |||||||||||||||||||||||||
| |||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <locale> | ||
class time_base; | ||
The classstd::time_base provides the date order constants which are inherited by thestd::time_get facets.
| Member type | Description |
| enum dateorder{ no_order, dmy, mdy, ymd, ydm}; | Unscoped enumeration type |
| Enumeration constant | Description |
no_order | Unspecified order |
dmy | Day, month, year (European) order |
mdy | Month, day, year (American) order |
ymd | Year, month, day (Asian) order |
ydm | Year, day, month |
[virtual] | obtains preferred ordering of day, month, and year (virtual protected member function of std::time_get<CharT,InputIt>)[edit] |
[virtual] | extracts month, day, and year from input stream (virtual protected member function of std::time_get<CharT,InputIt>)[edit] |