Boost.DynamicBitset

    • Boost.DynamicBitset
    • Reference
  • boost::dynamic_bitset::operator=
arrow_upward

boost::dynamic_bitset::operator=

Assignment operators

Synopses

Declared in <boost/dynamic_bitset/dynamic_bitset.hpp>

Copy assignment operator.

dynamic_bitset&
operator=(dynamic_bitset const& b);

» more...

Move assignment operator.

dynamic_bitset&
operator=(dynamic_bitset&& src);

» more...

Return Value

*this.

Postconditions

  • For all i in the range [0, x.size()), ( *this )[ i ] == b[ i ].

Created with MrDocs