beman::optional::optional::operator=

Move assigns the value from rhs if it has one.

Synopsis

Declared in <beman/optional/optional.hpp>
constexpr
optional&
operator=(optional&& other)
requires std::is_move_constructible_v<T> && std::is_move_assignable_v<T> &&
                     std::is_trivially_move_constructible_v<T> && std::is_trivially_move_assignable_v<T> = default;


Return Value

Reference to the current object

Parameters

Name Description
other The object to move assign from

Created with MrDocs