class
std::chrono::weekday_last(C++20)
namespace std::chrono {
class weekday_last;
}
概要
weekday_last
は、月内での指定した最終曜日を表すクラスである。
このクラスは等値比較ができ、EqualityComparableの要件を満たす。しかし大小比較はできず、LessThanComparable要件は満たさない。
このクラスは、トリビアルコピー可能で、かつスタンダードレイアウト型である。
メンバ関数
構築/コピー/破棄
名前 |
説明 |
対応バージョン |
(constructor) |
コンストラクタ |
C++20 |
weekday_last& operator=(const weekday_last&) = default; weekday_last& operator=(weekday_last&&) = default; |
代入演算子 |
C++20 |
観測
名前 |
説明 |
対応バージョン |
weekday |
曜日を取得する |
C++20 |
ok |
値が範囲に収まっているか判定する |
C++20 |
非メンバ関数
比較演算
名前 |
説明 |
対応バージョン |
operator== |
等値比較を行う |
C++20 |
bool operator!=(const weekday_last&, const weekday_last&) noexcept; |
非等値比較を行う (== により使用可能) |
C++20 |
入出力
文字列フォーマットサポート
ハッシュサポート
名前 |
説明 |
対応バージョン |
template <class T> struct hash; |
hash クラスの先行宣言 |
C++26 |
template<> struct hash<chrono::weekday_last>; |
hash クラスのweekday_last に対する特殊化 |
C++26 |
例
出力
2020-04-26
バージョン
言語
処理系
参照