Namespaces
Variants

std::experimental::filesystem::directory_entry:: operator==,!=,<,<=,>,>=

From cppreference.net
bool operator == ( const directory_entry & rhs ) const ;
(1) (filesystem TS)
bool operator ! = ( const directory_entry & rhs ) const ;
(2) (filesystem TS)
bool operator < ( const directory_entry & rhs ) const ;
(3) (filesystem TS)
bool operator <= ( const directory_entry & rhs ) const ;
(4) (filesystem TS)
bool operator > ( const directory_entry & rhs ) const ;
(5) (filesystem TS)
bool operator >= ( const directory_entry & rhs ) const ;
(6) (filesystem TS)

ディレクトリエントリ rhs とパスを比較します。

目次

パラメータ

rhs - 比較対象のdirectory_entry

戻り値

1) true path ( ) == rhs. path ( ) の場合、 false それ以外の場合。
2) true path ( ) ! = rhs. path ( ) の場合、 false それ以外の場合。
3) true path ( ) < rhs. path ( ) の場合、 false がそれ以外の場合。
4) true path ( ) <= rhs. path ( ) の場合、 false それ以外の場合。
5) true を返す条件: path ( ) > rhs. path ( ) の場合、 false をそれ以外の場合に返す。
6) true path path ( ) >= rhs. path ( ) の場合、 false それ以外の場合。

例外

noexcept 仕様:
noexcept

関連項目

エントリが参照するパスを返す
(公開メンバ関数)