boost::dynamic_bitset::operator<<=

Shifts the bits in this bitset to the left by n positions.

Synopsis

Declared in <boost/dynamic_bitset/dynamic_bitset.hpp>

dynamic_bitset&
operator<<=(size_type n);

Description

For each bit in the bitset, the bit at position pos takes on the previous value of the bit at position pos ‐ n, or zero if no such bit exists.

Throws

Nothing.

Return Value

*this.

Parameters

Name Description

n

The right operand

Created with MrDocs