static void setBit(BitSet b, int bit) { b?.set(bit); } static void setBit(BitSet b, int bit, bool value) { b?.set(bit, value); }