-
Notifications
You must be signed in to change notification settings - Fork 7
task_list operator=
Alexy Pellegrini edited this page May 11, 2021
·
1 revision
nes::task_list::operator=
(1) task_list& operator=(const task_list&) = delete;
(2) task_list& operator=(task_list&& other) noexcept;
- Deleted copy-assignment operator.
- Move-assignment operator. Replace the content of
*this
with those ofother
. After this call,other
is invalid.
Name | Description |
---|---|
other |
An instance of nes::task_list
|
- Deleted
*this
- Deleted.
- Does not throw.