constexpr bool ok() const noexcept; // (1) C++20
概要
month_weekday
オブジェクトの値が有効な日付の範囲内かを判定する。
戻り値
以下の全ての条件を満たす場合にこの関数はtrue
を返し、そうでなければfalse
を返す:
month().ok() == true
であることweekday_indexed().ok() == true
であること
例
#include <cassert>
#include <chrono>
namespace chrono = std::chrono;
int main()
{
assert((chrono::March/chrono::Sunday[1]).ok() == true);
assert((chrono::March/chrono::Sunday[0]).ok() == false);
}
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 11.1 ✅
- Visual C++: 2019 Update 3 ❌