std::chrono::month
From cppreference.com
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Date and time library
(C++11)
(C++20)
(C++20)
(C++11)
(C++11)
(C++11)
(C++20)
(C++20)
(C++20)
(C++11)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)
(C++20)(C++20)
(C++20)
(C++20)
month
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)(C++20)(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
std::chrono::month
Member functions
Nonmember functions
Helper classes
(C++26)
Defined in header
<chrono>
class month;
(since C++20)
inline constexpr std::chrono::month January{1};
(since C++20)
inline constexpr std::chrono::month February{2};
(since C++20)
inline constexpr std::chrono::month March{3};
(since C++20)
inline constexpr std::chrono::month April{4};
(since C++20)
inline constexpr std::chrono::month May{5};
(since C++20)
inline constexpr std::chrono::month June{6};
(since C++20)
inline constexpr std::chrono::month July{7};
(since C++20)
inline constexpr std::chrono::month August{8};
(since C++20)
inline constexpr std::chrono::month September{9};
(since C++20)
inline constexpr std::chrono::month October{10};
(since C++20)
inline constexpr std::chrono::month November{11};
(since C++20)
inline constexpr std::chrono::month December{12};
(since C++20)
The class month
represents a month in a year. Its normal range is [
1,
12]
, but it may hold any number in [
0,
255]
. Twelve named constants are predefined in the std::chrono
namespace for the twelve months of the year.
month
is a TriviallyCopyable StandardLayoutType.
[edit] Member functions
[edit] Nonmember functions
[edit] Helper classes
(C++26)
(class template specialization)