-
Notifications
You must be signed in to change notification settings - Fork 7
task_list task_list
Alexy Pellegrini edited this page May 11, 2021
·
1 revision
nes::task_list::task_list
(1) constexpr task_list() = default;
(2) task_list(const task_list&) = delete;
(3) task_list(task_list&& other) noexcept;
- Constructs an invalid task_list.
- Deleted copy-constructor.
- Move-constructs a task list, after this call
other
is invalid.
Name | Description |
---|---|
other |
A task list instance. If this task list is invalid, *this will be invalid after this call. |
- Does not throw.
- Deleted
- Does not throw.