Skip to content

shared_library operator=

Alairion edited this page May 8, 2021 · 10 revisions

Functions

(1) shared_library& operator=(const shared_library&) = delete;
(2) shared_library& operator=(shared_library&& other) noexcept;
  1. Deleted copy-assignment operator.
  2. Move-assignment operator. Replace the content with those of other. After this call, other does no longer represents a valid binary.

Parameters

Name Description
other An instance of nes::shared_library

Return value

  1. Deleted
  2. *this

Exceptions

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