namespace std::filesystem {
// operator<=>により、以下のオーバーロードが使用可能になる (C++20)
bool operator>(const path& lhs, const path& rhs) noexcept; // (1) C++17
}
概要
path
クラスにおいて、左辺が右辺より大きいかの判定を行う。
戻り値
return rhs < lhs;
例
#include <cassert>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
fs::path a = "a/b/d";
fs::path b = "a/b/c";
assert(a > b);
}
出力
バージョン
言語
- C++17
処理系
- Clang:
- GCC: 8.1 ✅
- Visual C++: 2017 Update 7 ✅
参照
- P1614R2 The Mothership has Landed
- C++20での三方比較演算子の追加と、関連する演算子の自動導出