concurrent_vector::operator= Operator
Assigns the contents of another concurrent_vector object to this one. This method is not concurrency-safe.
concurrent_vector& operator=(
const concurrent_vector& _Vector
);
template<
class M
>
concurrent_vector& operator=(
const concurrent_vector<_Ty,
M>& _Vector
);
concurrent_vector& operator=(
concurrent_vector && _Vector
);
Parameters
M
The allocator type of the source vector._Vector
The source concurrent_vector object.
Return Value
A reference to this concurrent_vector object.
Requirements
Header: concurrent_vector.h
Namespace: concurrency