bool operator==( const path& lhs, const path& rhs ); | (1) | (since C++17) |
bool operator!=( const path& lhs, const path& rhs ); | (2) | (since C++17) |
bool operator<( const path& lhs, const path& rhs ); | (3) | (since C++17) |
bool operator<=( const path& lhs, const path& rhs ); | (4) | (since C++17) |
bool operator>( const path& lhs, const path& rhs ); | (5) | (since C++17) |
bool operator>=( const path& lhs, const path& rhs ); | (6) | (since C++17) |
Compares two paths lexicographically.
lhs
and rhs
are equal. Equivalent to !(lhs < rhs) && !(rhs < lhs)
.lhs
and rhs
are not equal. Equivalent to !(lhs == rhs)
.lhs
is less than rhs
. Equivalent to lhs.compare(rhs) < 0
.lhs
is less than or equal to rhs
. Equivalent to !(rhs < lhs)
.lhs
is greater than rhs
. Equivalent to rhs < lhs
.lhs
is greater than or equal to rhs
. Equivalent to !(lhs < rhs)
.lhs, rhs | - | the paths to compare |
true
if the corresponding comparison yields, false
otherwise.
noexcept
specification: noexcept
Path equality and equivalence have different semantics.
In the case of equality, as determined by operator==
, only lexical representations are compared. Therefore, path("a") == path("b")
is never true
.
In the case of equivalence, as determined by equivalent()
, it is checked whether two paths resolve to the same file system object. Thus equivalent("a", "b")
will return true
if the paths resolve to the same file.
compares the lexical representations of two paths lexicographically (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/filesystem/path/operator_cmp