std::deque::operator=

From Cppreference

Jump to: navigation, search
deque& operator=( const deque& other );
(1)
deque& operator=( deque&& other );
(2) (C++11 feature)

Replaces the contents of the container.

1) Copy assignment operator. Replaces the contents with a copy of the contents of other.

2) Move assignment operator. Replaces the contents with those of other using move semantics.

Contents

[edit] Parameters

other - another container to be used as source

[edit] Return value

*this

[edit] Complexity

[edit] See also

(constructor)
constructs the deque
(public member function)
assign
assigns values to the container
(public member function)