-
Notifications
You must be signed in to change notification settings - Fork 7
task_builder operator=
Alexy Pellegrini edited this page May 10, 2021
·
1 revision
nes::task_builder::operator=
(1) task_builder& operator=(const task_builder&) = delete;
(2) task_builder& operator=(task_builder&& 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_builder
|
- Deleted
*this
- Deleted.
- Does not throw.