constexpr bool ok() const noexcept; // (1) C++20
概要
weekday_last
オブジェクトが保持する曜日が妥当な範囲内にあるかを判定する。
戻り値
コンストラクタで設定されて保持している曜日を表す値wd_
があるとして、以下を返す:
return wd_.ok();
例
#include <cassert>
#include <chrono>
namespace chrono = std::chrono;
int main()
{
assert(chrono::Sunday[chrono::last].ok());
assert(!(chrono::weekday_last{chrono::weekday{8}}).ok());
}
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 9.2 ❌
- Visual C++: 2019 Update 3 ❌