-
Notifications
You must be signed in to change notification settings - Fork 7
process operator=
Alairion edited this page May 8, 2021
·
5 revisions
nes::process::operator=
(1) process& operator=(const process&) = delete;
(2) process& operator=(process&& other) noexcept;
- Deleted copy-assignment operator.
- Move-assignment operator. Initializes the new process with the content other. After this call, other does no longer represents a valid process.
Name | Description |
---|---|
other |
An instance of nes::process
|
- Deleted.
-
*this
.
- None
-
joinable()
returnsfalse
.
- Deleted
- Does not throw