[#BloombergLP-bdlb-Variant11-assign] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlb.adoc[bdlb]::xref:BloombergLP/bdlb/Variant11.adoc[Variant11]::assign :relfileprefix: ../../../ :mrdocs: `assign` overloads == Synopses Declared in `<bdlb_variant.h>` Assign to this object the specified `value` of template parameter `TYPE`, and return a reference providing modifiable access to this object. The value currently held by this variant (if any) is destroyed if that value's type is not the same as `TYPE`. `TYPE` must be the same as one of the types that this variant can hold. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> xref:BloombergLP/bdlb/VariantImp.adoc[VariantImp<TYPES>]& xref:BloombergLP/bdlb/VariantImp/assign-06.adoc[assign](TYPE const& value); ---- [.small]#xref:BloombergLP/bdlb/VariantImp/assign-06.adoc[_» more..._]# Assign to this object the specified `value` of template parameter `TYPE`, and return a reference providing modifiable access to this object. The contents of `value` are moved to this object with `value` left in a valid but unspecified state. The value currently held by this variant (if any) is destroyed if that value`s type is not the same as `TYPE`. `TYPE` must be the same as one of the types that this variant can hold. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> xref:BloombergLP/bdlb/VariantImp.adoc[VariantImp<TYPES>]& xref:BloombergLP/bdlb/VariantImp/assign-0b.adoc[assign](TYPE&& value); ---- [.small]#xref:BloombergLP/bdlb/VariantImp/assign-0b.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#