3 * Summary: Bit array data type.
4 * Created by: Robert Vollmert
6 * Just contains the operations required by los.cc
16 bit_array(unsigned long size
= 0);
21 bool get(unsigned long index
) const;
22 void set(unsigned long index
, bool value
= true);
24 bit_array
& operator |= (const bit_array
& other
);
25 bit_array
& operator &= (const bit_array
& other
);
26 bit_array
operator & (const bit_array
& other
) const;