std::experimental::filesystem::directory_entry::operator==,!=,<,<=,>,>=
Von cppreference.com
< cpp | experimental | fs | directory entry
| bool operator==( const directory_entry& rhs ) const; |
(1) | (Dateisystem-TS) |
| bool operator!=( const directory_entry& rhs ) const; |
(2) | (Dateisystem-TS) |
| bool operator<( const directory_entry& rhs ) const; |
(3) | (Dateisystem-TS) |
| bool operator<=( const directory_entry& rhs ) const; |
(4) | (Dateisystem-TS) |
| bool operator>( const directory_entry& rhs ) const; |
(5) | (Dateisystem-TS) |
| bool operator>=( const directory_entry& rhs ) const; |
(6) | (Dateisystem-TS) |
Vergleicht den Pfad mit dem Verzeichniseintrag rhs.
Inhalt |
[edit] Parameter
| rhs | - | directory_entry zum Vergleichen |
[edit] Rückgabewert
1) true wenn path() == rhs.path(), false andernfalls.
2) true wenn path() != rhs.path(), false andernfalls.
3) true wenn path() < rhs.path(), false andernfalls.
4) true wenn path() <= rhs.path(), false andernfalls.
5) true wenn path() > rhs.path(), false andernfalls.
6) true wenn path() >= rhs.path(), false andernfalls.
[edit] Ausnahmen
noexcept-Spezifikation:
noexcept
[edit] Siehe auch
| gibt den Pfad zurück, auf den der Eintrag verweist (public member function) |