Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Perl

Idiom #68 Create a bitset

Create an object x to store n bits (n being potentially large).

vec($x, $n, 1) = 0;

Creates bitset (containing all zeros) of $n bits (rounded up to the nearest multiple of 8). To extend it, just set another 0 (or 1) bit at the new width you want.
#include <bitset>
std::bitset<n> x;

New implementation...
< >
programming-idioms.org