[#BloombergLP-bslstl-RandomAccessIterator-operator_assign-04] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslstl.adoc[bslstl]::xref:BloombergLP/bslstl/RandomAccessIterator.adoc[RandomAccessIterator]::operator= :relfileprefix: ../../../ :mrdocs: Assignment operators == Synopses Declared in `<bslstl_bidirectionaliterator.h>` Copy the value of the specified `rhs` to this iterator. Return a reference to this modifiable iterator. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bslstl/RandomAccessIterator.adoc[RandomAccessIterator<T, ITER_IMP, TAG_TYPE>]& xref:BloombergLP/bslstl/RandomAccessIterator/operator_assign-0f.adoc[operator=](xref:BloombergLP/bslstl/RandomAccessIterator.adoc[RandomAccessIterator<UnCvqT, ITER_IMP, TAG_TYPE>] const& other); ---- [.small]#xref:BloombergLP/bslstl/RandomAccessIterator/operator_assign-0f.adoc[_» more..._]# Copy the value of the specified `rhs` of another (compatible) `BidirectionalIterator` type, (e.g., a mutable iterator of the same type) to this iterator. Return a reference to this modifiable object. Note that this method may be the copy‐assignment operator (inhibiting the implicit declaration of a copy‐assignment operator above), or may be an additional overload. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bslstl/BidirectionalIterator.adoc[BidirectionalIterator<T, ITER_IMP, TAG_TYPE>]& xref:BloombergLP/bslstl/BidirectionalIterator/operator_assign-0c.adoc[operator=](xref:BloombergLP/bslstl/BidirectionalIterator.adoc[BidirectionalNonConstIterator] const& rhs); ---- [.small]#xref:BloombergLP/bslstl/BidirectionalIterator/operator_assign-0c.adoc[_» more..._]# Copy the value of the specified `rhs` of another (compatible) `ForwardIterator` type, (e.g., a mutable iterator of the same type) to this iterator. Return a reference to this modifiable object. Note that this method may be the copy‐assignment operator (inhibiting the implicit declaration of a copy‐assignment operator above), or may be an additional overload. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bslstl/ForwardIterator.adoc[ForwardIterator<T, ITER_IMP, TAG_TYPE>]& xref:BloombergLP/bslstl/ForwardIterator/operator_assign.adoc[operator=](xref:BloombergLP/bslstl/ForwardIterator.adoc[ForwardNonConstIterator] const& rhs); ---- [.small]#xref:BloombergLP/bslstl/ForwardIterator/operator_assign.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#