Logo

Programming-Idioms

  • Perl
  • Obj-C
  • D

Idiom #68 Create a bitset

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

import std.bitmanip;
BitArray x;
x.length = n;
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