prevector<36, unsigned char>::operator=

Assignment operators

Synopses

Declared in <prevector.h>

Copy-assigns the contents of other to this container.

prevector<36, unsigned char>&
operator=(prevector<36U, unsigned char, unsigned int, int> const& other);
» more...

Move-assigns the contents of other to this container, leaving it empty.

prevector<36, unsigned char>&
operator=(prevector<36U, unsigned char, unsigned int, int>&& other) noexcept;
» more...

Return Value

A reference to this container.

Parameters

NameDescription
otherThe container to copy from.