Skip to content

task_list operator=

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

nes::task_list::operator=

Functions

(1) task_list& operator=(const task_list&) = delete;
(2) task_list& operator=(task_list&& other) noexcept;
  1. Deleted copy-assignment operator.
  2. Move-assignment operator. Replace the content of *this with those of other. After this call, other is invalid.

Parameters

Name Description
other An instance of nes::task_list

Return value

  1. Deleted
  2. *this

Exceptions

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