Assignment operators

Synopses

Declared in <util/bitdeque.h>

Copy assignment operator.

bitdeque&
operator=(bitdeque const& other) = default;

Move assignment operator.

bitdeque&
operator=(bitdeque&& other) noexcept = default;

Set the container equal to the bits in ilist.

bitdeque&
operator=(std::initializer_list<bool> ilist);

Return Value

Reference to this container.

Parameters

Name

Description

other

Container to copy from.

ilist

Initializer list of bit values to copy.

Created with MrDocs