std::chrono::year::is_leap

From cppreference.com
< cpp‎ | chrono‎ | year
 
 
Utilities library
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

Elementary string conversions
(C++17)
(C++17)
 
Date and time utilities
(C++11)
(C++11)
Time of day
(C++20)



(C++20)(C++20)(C++20)(C++20)
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-style date and time
 
 
constexpr bool is_leap() const noexcept;
(since C++20)

Determines if *this represents a leap year in the proleptic Gregorian calendar.

*this represents a leap year if the stored year value

  • is divisible by 4 and not divisible by 100; or
  • is divisible by 400.

Return value

true if *this represents a leap year, otherwise false.

Example

#include <iostream>
#include <chrono>
 
int main()
{
 
    std::chrono::year y1{2020};
    y1.is_leap() ? 
        std::cout << "Year is a leap year" : std::cout << "Year is not a leap year";
        std::cout << "\n";
 
    std::chrono::year y2{2001};
    y2.is_leap() ? 
        std::cout << "Year is a leap year" : std::cout << "Year is not a leap year";
        std::cout << "\n";
 
}

Output:

Year is a leap year
Year is not a leap year