Skip to content

task_list task_list

Alexy Pellegrini edited this page May 11, 2021 · 1 revision

nes::task_list::task_list

Functions

(1) constexpr task_list() = default;
(2) task_list(const task_list&) = delete;
(3) task_list(task_list&& other) noexcept;
  1. Constructs an invalid task_list.
  2. Deleted copy-constructor.
  3. Move-constructs a task list, after this call other is invalid.

Parameters

Name Description
other A task list instance. If this task list is invalid, *this will be invalid after this call.

Exceptions

  1. Does not throw.
  2. Deleted
  3. Does not throw.
Clone this wiki locally