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