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)
**Anmerkung:** - Alle C++-Code-Elemente (innerhalb der ` ` Tags) wurden gemäß den Anforderungen unverändert belassen - HTML-Tags, Attribute und numerische Kennzeichnungen (1)-(6) wurden nicht übersetzt - Technische Begriffe wie "directory_entry" und "filesystem TS" bleiben im Original

Vergleicht den Pfad mit dem Verzeichniseintrag rhs .

Inhaltsverzeichnis

Parameter

rhs - zu vergleichender directory_entry

Rückgabewert

1) true wenn path ( ) == rhs. path ( ) , false sonst.
2) true falls path ( ) ! = rhs. path ( ) , false andernfalls.
3) true wenn path ( ) < rhs. path ( ) , false sonst.
4) true wenn path ( ) <= rhs. path ( ) , false sonst.
5) true wenn path ( ) > rhs. path ( ) , false andernfalls.
6) true wenn path ( ) >= rhs. path ( ) , false sonst.

Exceptions

noexcept Spezifikation:
noexcept

Siehe auch

gibt den Pfad zurück, auf den der Eintrag verweist
(öffentliche Elementfunktion)