Logo

Programming-Idioms

  • Rust
  • Pascal

Idiom #68 Create a bitset

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

uses classes;
procedure task;
var 
  x: TBits;
  n: integer;
begin 
  n := $FFF;
  x := TBits.Create(n);
end;

when the set contains more than 256 elements the class TBits must be used
procedure Task;
var
  x: Set Of Byte;
begin
  x:= [2,4,8,16,32,64,256];  
end;

when the set contains less than 256 elements the built-in Set Of construct can be used.
let mut x = vec![false; n];
#include <bitset>
std::bitset<n> x;

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