Function operator=
Synopsis
#include <include/EASTL/bitvector.h>
bitvector & operator=(const bitvector &x)
Description
No description yet.
Source
Lines 1339-1348 in include/EASTL/bitvector.h. Line 248 in include/EASTL/bitvector.h.
template <typename Allocator, typename Element, typename Container>
bitvector<Allocator, Element, Container>&
bitvector<Allocator, Element, Container>::operator=(const bitvector& rhs)
{
// The following is OK if (&rhs == this)
mContainer = rhs.mContainer;
mFreeBitCount = rhs.mFreeBitCount;
return *this;
}