table of contents
        
      
      
    
      other versions
    
    - Tumbleweed 2024.07.05-1.3
 - Leap-16.0
 - Leap-15.6
 
| std::chrono::year::min(3) | C++ Standard Libary | std::chrono::year::min(3) | 
NAME¶
std::chrono::year::min - std::chrono::year::min
Synopsis¶
static constexpr std::chrono::year min() noexcept; (since C++20)
  
   Returns the smallest possible year, that is, std::chrono::year(-32767).
Return value¶
std::chrono::year(-32767)
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
| 2024.06.10 | http://cppreference.com |