boost::dynamic_bitset::dynamic_bitset

Move constructor.

Synopsis

Declared in <boost/dynamic_bitset/dynamic_bitset.hpp>

dynamic_bitset(dynamic_bitset&& src);

Description

Constructs a bitset that is the same as the bitset src, while using the resources from src. The allocator for this bitset is moved from the allocator in src.

Throws

An allocation error if memory is exhausted (std::bad_alloc if allocator_type is a std::allocator).

Parameters

Name Description

src

The object to move construct from

Created with MrDocs