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) |
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) |