@param i bit to get @return true iff bit i is set
bool get(int i) { return (_bits[i ~/ 32] & (1 << (i & 0x1F))) != 0; }