std::experimental::filesystem::directory_entry:: operator==,!=,<,<=,>,>=
From cppreference.net
<
cpp
|
experimental
|
fs
|
directory entry
|
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) |
`/`
` a été préservé conformément aux instructions. Les termes spécifiques au C++ (comme `directory_entry`, `bool`, `const`, etc.) et les balises HTML n'ont pas été traduits.
Compare le chemin avec l'entrée de répertoire rhs .
Table des matières |
Paramètres
| rhs | - | directory_entry à comparer |
Valeur de retour
1)
true
si
path
(
)
==
rhs.
path
(
)
,
false
sinon.
2)
true
si
path
(
)
!
=
rhs.
path
(
)
,
false
sinon.
3)
true
si
path
(
)
<
rhs.
path
(
)
,
false
sinon.
4)
true
si
path
(
)
<=
rhs.
path
(
)
,
false
sinon.
5)
true
si
path
(
)
>
rhs.
path
(
)
,
false
sinon.
6)
true
si
path
(
)
>=
rhs.
path
(
)
,
false
sinon.
Exceptions
noexcept
spécification :
noexcept
Voir aussi
|
renvoie le chemin auquel l'entrée fait référence
(fonction membre publique) |