folly::Synchronized::operator=

Assignment operators

Synopses

Declared in <folly/Synchronized.h>

Move assignment operator.

Synchronized&
operator=(Synchronized&& rhs);
» more...

Copy assignment operator.

Synchronized&
operator=(std::conditional<std::is_copy_constructible<T>::value && std::is_move_assignable<T>::value, Synchronized const&, NonImplementedType>::type rhs);
» more...

Lock object, assign datum.

Synchronized&
operator=(T const& rhs);
» more...

Lock object, move-assign datum.

Synchronized&
operator=(T&& rhs);
» more...

Return Value

A reference to this object.

Parameters

NameDescription
rhsThe source object to move-assign from.