FreeBSD Manual Pages
std::chrono...torunsigned(3) C++ Standard Libary std::chrono...torunsigned(3) NAME std::chrono::month::operatorunsigned - std::chrono::month::operatorun- signed Synopsis explicit constexpr operator unsigned() const noexcept; (since C++20) Returns the month value stored in *this. Return value The month value stored in *this. Example // Run this code #include <iostream> #include <chrono> int main() { constexpr std::chrono::month m {6}; constexpr unsigned p = static_cast<unsigned>(m); constexpr unsigned q = static_cast<unsigned>(std::chrono::Septem- ber); std::cout << "The month is: " << p << '\n' << "September is: " << q << '\n'; } Output: The month is: 6 September is: 9 http://cppreference.com 2022.07.31 std::chrono...torunsigned(3)
NAME | Synopsis | Return value | Example | Output:
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::chrono::month::operatorunsigned&sektion=3&manpath=FreeBSD+Ports+15.0>
