boost::operator&
Performs a bitwise‐AND of two bitsets.
Synopsis
Declared in <boost/dynamic_bitset/dynamic_bitset.hpp>
template<
typename Block,
typename AllocatorOrContainer>
dynamic_bitset<Block, AllocatorOrContainer>
operator&(
dynamic_bitset<Block, AllocatorOrContainer> const& a,
dynamic_bitset<Block, AllocatorOrContainer> const& b);
Throws
An allocation error if memory is exhausted (std::bad_alloc if AllocatorOrContainer is a std::allocator).
Preconditions
-
a.size() == b.size().
Created with MrDocs