Assignment operators
Declared in <prevector.h>
Copy-assigns the contents of other to this container.
prevector&
operator=(prevector<N, T, Size, Diff> const& other);
» more...
Move-assigns the contents of other to this container, leaving it empty.
prevector&
operator=(prevector<N, T, Size, Diff>&& other) noexcept;
» more...
A reference to this container.
| Name | Description |
|---|---|
| other | The container to copy from. |