std::filesystem::file_status::operator=
From cppreference.com
< cpp | filesystem | file status
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
std::filesystem::file_status
Member functions
file_status::operator=
Non-member functions
(C++20)
file_status& operator=( const file_status& other ) noexcept = default;
(1)
(since C++17)
file_status& operator=( file_status&& other ) noexcept = default;
(2)
(since C++17)
Copy- or move-assigns another file status object.
[edit] Parameters
other
-
another file_status object to assign
[edit] Return value
*this
[edit] Example
This section is incomplete
Reason: no example
Reason: no example