namespace std::filesystem {
bool operator>=(const path& lhs, const path& rhs) noexcept;
}
概要
path
クラスにおいて、左辺が右辺以上かの判定を行う。
戻り値
return !(lhs < rhs);
例
出力
バージョン
言語
- C++17
処理系
- Clang:
- GCC: 8.1
- Visual C++:
namespace std::filesystem {
bool operator>=(const path& lhs, const path& rhs) noexcept;
}
path
クラスにおいて、左辺が右辺以上かの判定を行う。
return !(lhs < rhs);