std::chrono::year
From cppreference.com
C++
Date and time library
|
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::chrono::year
| Member functions | ||||
| Nonmember functions | ||||
| Helper classes | ||||
(C++26) |
| Defined in header <chrono>
|
||
| class year; |
(since C++20) | |
The class year represents a year in the proleptic Gregorian calendar. Its range is [-32767, 32767].
year is a TriviallyCopyable StandardLayoutType.
Contents |
[edit] Member functions
constructs a year (public member function) [edit] | |
| increments or decrements the year (public member function) [edit] | |
adds or subtracts a number of years from a year (public member function) [edit] | |
applies unary operators to year (public member function) [edit] | |
| determines if the year is a leap year (public member function) [edit] | |
| retrieve the year value (public member function) [edit] | |
| checks if the stored year value is valid (public member function) [edit] | |
| [static] |
returns the smallest possible year value (public static member function) [edit] |
| [static] |
returns the largest possible year (public static member function) [edit] |
[edit] Non-member functions
| (C++20) |
compares two year values (function) [edit] |
| (C++20) |
performs arithmetic on years (function) [edit] |
| (C++20) |
outputs a year into a stream (function template) [edit] |
| (C++20) |
parses a year from a stream according to the provided format (function template) [edit] |
[edit] Helper classes
formatting support for year (class template specialization) [edit] | |
| (C++26) |
hash support for std::chrono::year (class template specialization) |
[edit] Literals
| Defined in inline namespace
std::literals::chrono_literals | |
| (C++20) |
a std::chrono::year literal representing a particular year (function) [edit] |