Namespaces
Variants
Actions

std::chrono::year::min

From cppreference.com
< cpp‎ | chrono‎ | year
 
 
Date and time library
(C++11)
(C++20)
(C++11)
(C++11)
(C++11)
(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)

 
 
static constexpr std::chrono::year min() noexcept;
(since C++20)

Returns the smallest possible year, that is, std::chrono::year (-32767).

[edit] Return value

std::chrono::year (-32767)

[edit] Example

Run this code
#include <chrono>
#include <iostream>
 
int main()
{
 std::cout << "The minimum year is: " << (int)std::chrono::year::min() << '\n';
}

Output:

The minimum year is: -32767
Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/chrono/year/min&oldid=157521"

AltStyle によって変換されたページ (->オリジナル) /