constexpr explicit operator unsigned() const noexcept; | (since C++20) |
Returns the day value stored in *this.
The day value stored in *this.
#include <iostream>
#include <chrono>
int main()
{
constexpr std::chrono::day d {15};
constexpr unsigned day = static_cast<unsigned>(d);
std::cout << "The day is: " << day << '\n';
}Output:
The day is: 15
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/chrono/day/operator_unsigned