namespace std::chrono {
constexpr bool
operator==(const year_month_weekday& x,
const year_month_weekday& y) noexcept; // (1) C++20
}
概要
year_month_weekday
同士の等値比較を行う。
戻り値
- (1) :
return x.year() == y.year() &&
x.month() == y.month() &&
x.weekday_indexed() == y.weekday_indexed();
例外
投げない
備考
- この演算子により、
operator!=
が使用可能になる
例
#include <cassert>
#include <chrono>
namespace chrono = std::chrono;
using namespace std::chrono_literals;
int main()
{
assert(2020y/3/chrono::Sunday[2] == 2020y/3/chrono::Sunday[2]);
assert(2020y/3/chrono::Sunday[1] != 2020y/3/chrono::Sunday[2]);
}
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 11.1 ✅
- Visual C++: 2019 Update 3 ❌