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) |
Сравнивает путь с записью каталога rhs .
Содержание |
Параметры
| rhs | - | directory_entry для сравнения |
Возвращаемое значение
1)
true
если
path
(
)
==
rhs.
path
(
)
,
false
в противном случае.
2)
true
если
path
(
)
!
=
rhs.
path
(
)
,
false
в противном случае.
3)
true
если
path
(
)
<
rhs.
path
(
)
,
false
в противном случае.
4)
true
если
path
(
)
<=
rhs.
path
(
)
,
false
в противном случае.
5)
true
если
path
(
)
>
rhs.
path
(
)
,
false
в противном случае.
6)
true
если
path
(
)
>=
rhs.
path
(
)
,
false
в противном случае.
Исключения
noexcept
спецификация:
noexcept
Смотрите также
|
возвращает путь, на который ссылается запись
(публичная функция-член) |