Skip to content

task_builder operator=

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

nes::task_builder::operator=

Functions

(1) task_builder& operator=(const task_builder&) = delete;
(2) task_builder& operator=(task_builder&& 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_builder

Return value

  1. Deleted
  2. *this

Exceptions

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