Skip to content

process operator=

Alairion edited this page May 8, 2021 · 5 revisions

nes::process::operator=

Functions

(1) process& operator=(const process&) = delete;
(2) process& operator=(process&& other) noexcept;
  1. Deleted copy-assignment operator.
  2. Move-assignment operator. Initializes the new process with the content other. After this call, other does no longer represents a valid process.

Parameters

Name Description
other An instance of nes::process

Return value

  1. Deleted.
  2. *this.

Preconditions

  1. None
  2. joinable() returns false.

Exceptions

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