- filesystem[meta header]
- std::filesystem[meta namespace]
- function[meta id-type]
- cpp17[meta cpp]
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);
}
- a > b[color ff0000]
- C++17
- Clang:
- GCC: 8.1 [mark verified]
- Visual C++: 2017 Update 7 [mark verified]
- P1614R2 The Mothership has Landed
- C++20での三方比較演算子の追加と、関連する演算子の自動導出