最終更新日時(UTC):
が更新

履歴 編集

function
<chrono>

std::chrono::year_month_weekday::ok(C++20)

constexpr bool ok() const noexcept; // (1) C++20

概要

year_month_weekdayオブジェクトの値が有効な日付の範囲内かを判定する。

戻り値

  • 以下のいずれかの条件を満たす場合にこの関数はfalseを返す:
    • year()メンバ関数によって返されるオブジェクトyok()false
    • month()メンバ関数によって返されるオブジェクトmok()false
    • weekday_indexed()メンバ関数によって返されるオブジェクトwdiok()false
  • *thisが妥当な日付を表す場合、この関数はtrueを返す
  • いずれにも合致しない場合、falseを返す

#include <cassert>
#include <chrono>

namespace chrono = std::chrono;
using namespace std::chrono_literals;

int main()
{
  assert((2020y/3/chrono::Sunday[2]).ok() == true);
  assert((2020y/3/chrono::Sunday[0]).ok() == false);
}

出力

バージョン

言語

  • C++20

処理系