Assignment operators
Declared in <bdld_manageddatum.h>
Assign to this object the value of the specified rhs object, and return a non-const reference to this object. This operation performs a clone of the underlying Datum, see {Value Semantics} for more detail.
ManagedDatum&
operator=(ManagedDatum const& rhs);
» more...
Assign to this object the value of the specified rhs object, and return a non-const reference to this object. Depending on the match of the object's allocators, this operation performs either shallow (the allocators are the same) or deep (the allocators are different) copying.
ManagedDatum&
operator=(bslmf::MovableRef<ManagedDatum> rhs);
» more...