bitdeque::assign

assign overloads

Synopses

Declared in <util/bitdeque.h>

Set the container equal to the bits in ilist.

void
assign(std::initializer_list<bool> ilist);
» more...

Set the container equal to count times the value of val.

void
assign(
    size_type count,
    bool val);
» more...

Set the container equal to the bits in [first,last).]

template<typename It>
void
assign(
    It first,
    It last);
» more...

Parameters

NameDescription
ilistInitializer list of bit values to copy.
countNumber of bits the container holds afterwards.
valValue assigned to every bit.
firstIterator to the first bit to copy.
lastIterator past the last bit to copy.