#include <boost/dynamic_bitset.hpp>
Go to the source code of this file.
Namespaces | |
bitset_utilities | |
this file contains additional dynamic_bitset methods | |
Functions | |
boost::dynamic_bitset | bitset_utilities::append (const boost::dynamic_bitset<> &bs1, const boost::dynamic_bitset<> &bs2) |
this method takes two bitsets bs1 and bs2 and returns result of bs2 appended to the end of bs1 More... | |
void | bitset_utilities::bitsetToChar (const boost::dynamic_bitset<> &bs, unsigned char *result) |
this method takes bitset obj and returns char * array More... | |
void | bitset_utilities::printWords (const boost::dynamic_bitset<> &bs) |
boost::dynamic_bitset | bitset_utilities::ushortToBitset (const unsigned int numberOfBits, unsigned short *buf) |
this method takes numberOfBits bits from unsigned short * array and returns them in the bitset obj. More... | |