table of contents
        
      
      
    
      other versions
    
    - Tumbleweed 2024.07.05-1.3
 - Leap-16.0
 - Leap-15.6
 
| std::chrono::month_day_last::ok(3) | C++ Standard Libary | std::chrono::month_day_last::ok(3) | 
NAME¶
std::chrono::month_day_last::ok - std::chrono::month_day_last::ok
Synopsis¶
constexpr bool ok() const noexcept; (since C++20)
  
   Checks if the month object stored in *this is valid.
Return value¶
month().ok()
Example¶
// Run this code
  
   #include <cassert>
  
   #include <chrono>
  
   int main()
  
   {
  
   auto mdl{std::chrono::February/std::chrono::last};
  
   assert(mdl.ok());
  
   mdl = {std::chrono::month(42)/std::chrono::last};
  
   assert(!mdl.ok());
  
   }
| 2024.06.10 | http://cppreference.com |